or

protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { taskGrid.DataSource = myDAL.GetTask(0); taskGrid.Rebind(); }
This is how I am populating my grid. When I use paging, it disappears.
Please help,
<telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server"> <asp:Label ID="progressLabel" runat="server" Text="Doing something...." /> </telerik:RadAjaxLoadingPanel> Hi
I have a RadGrid, I have now been tasked with putting a Right Click Context menu in place. What I need to figure out is:
1) How can I get a value from the either the DataItem or the DataKeyValues from client side for the row that has fired off the
context menu?
Any thoughts / pointers most appreciated
<telerik:RadMenu ID="RadMenuClients" runat="server" > <Items> <telerik:RadMenuItem Text="Toto" Value="0" /> <telerik:RadMenuItem Text="Titi" Value="1" /> <telerik:RadMenuItem Text="Tata" Value="3" /> <telerik:RadMenuItem Text="Tutu" Value="2" /> <telerik:RadMenuItem Text="Tete" Value="4" /> </Items></telerik:RadMenu>Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load 'Highliting Dim currentItem As RadMenuItem = RadMenuClients.Items.FindItemByValue(Session("idSel")) If currentItem IsNot Nothing Then currentItem.HighlightPath() Else RadMenuClients.Items.FindItemByValue(0).HighlightPath() End IfEnd Sub Protected Sub RadMenuClients_ItemClick(ByVal sender As Object, ByVal e As Telerik.Web.UI.RadMenuEventArgs) Handles RadMenuClients.ItemClick Session("idSel") = e.Item.Value End Sub