About
Pricing
Community
Teams
Start Free Trial
Log in
omegalove
asked on
11/8/2010
Photoalbum using ListView and Lightbox jquery plugin
http://aspdotnetcodebook.blogspot.com/2010/06/photoalbum-using-listview-and-lightbox.html
I need to insert a delete link
<%-- <asp:LinkButton ID="lnkDelete" runat="server" CommandName="Delete" Text="Delete" />--%>
jQuery
ASP.NET
JavaScript
6
3
Last Comment
omegalove
8/22/2022 - Mon
ASKER CERTIFIED SOLUTION
Shinesh Premrajan
11/8/2010
THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
omegalove
11/8/2010
ASKER
<script type="text/javascript">
<script type="text/javascript">
$(function() {
$('#images a').lightBox({ fixedNavigation: true });
$('#images a').append('<img src="images/cross.gif" onclick="callremove('+this
+')" class="deleteimage" />");
});
</script>
It opens the image up?
SOLUTION
Shinesh Premrajan
11/8/2010
THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
omegalove
11/8/2010
ASKER
still confused.
SOLUTION
Shinesh Premrajan
11/8/2010
THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
⚡ FREE TRIAL OFFER
Try out a week of full access for free.
Find out why thousands trust the EE community with their toughest problems.
omegalove
11/9/2010
ASKER
<script type="text/javascript">
$(function () {
$("a.lightbox").lightBox()
;
});
</script>
the problem was the css was being wrapped around the listview
This did the job.
Your help has saved me hundreds of hours of internet surfing.
fblack61
<script type="text/javascript">
$(function() {
$('#images a').lightBox({ fixedNavigation: true });
$('#images a').append('<img src="images/cross.gif" onclick="callremove('+this
});
</script>
It opens the image up?