Hi,
I have a radgrid with a delete Imagebutton, when i click on delete button a panel should hide that row with corresponding height and width of that row and the panel should contain two buttons with confirmation message... I'm using a jquery function to display the panel as slidedown when i click on delete button. this is my code to slidedown that panel
<script type="text/javascript">
$(function () {
$("#Link1").click(function (evt) {
evt.preventDefault();
$('#panelText').slideToggle('slow');
});
});
</script>
can any one please tell me how to display the panel on the selected row... and how to call that jquery function
I have a radgrid with a delete Imagebutton, when i click on delete button a panel should hide that row with corresponding height and width of that row and the panel should contain two buttons with confirmation message... I'm using a jquery function to display the panel as slidedown when i click on delete button. this is my code to slidedown that panel
<script type="text/javascript">
$(function () {
$("#Link1").click(function (evt) {
evt.preventDefault();
$('#panelText').slideToggle('slow');
});
});
</script>
can any one please tell me how to display the panel on the selected row... and how to call that jquery function