This is a migrated thread and some comments may be shown as answers.

Placing panel on a selected radgrid row

1 Answer 94 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Naresh
Top achievements
Rank 1
Naresh asked on 09 May 2011, 04:21 PM
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

1 Answer, 1 is accepted

Sort by
0
Radoslav
Telerik team
answered on 12 May 2011, 09:22 AM
Hi Naresh,

Please check out the following online resources:

http://stackoverflow.com/questions/3065080/how-to-overlay-a-div-or-any-element-over-a-table-row-tr
http://stackoverflow.com/questions/850954/positioning-expanding-collapsing-box-from-a-table-cell-with-jquery
http://www.sitepoint.com/forums/javascript-15/showing-div-mouse-position-table-row-onmouseover-568654.html

I hope this helps.

All the best,
Radoslav
the Telerik team

Browse the vast support resources we have to jump start your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.

Tags
Grid
Asked by
Naresh
Top achievements
Rank 1
Answers by
Radoslav
Telerik team
Share this question
or