I'm working with the demo found here: http://demos.telerik.com/aspnet-ajax/grid/examples/dataediting/editondblclick/defaultcs.aspx#qsf-demo-source
My question is why is the javascript commented out in the code on the demo page?
My problem is that when I try to implement my own inline edit, I get the following error at runtime: CS0103: The name 'rGridInductions' does not exist in the current context. I thought that maybe it had something to do with the fact that i'm using nested grids but i just don't know. Here is the general layout that I have going for the grids. I only need inline editing for rGridInductions:
Thanks for the help!
My question is why is the javascript commented out in the code on the demo page?
My problem is that when I try to implement my own inline edit, I get the following error at runtime: CS0103: The name 'rGridInductions' does not exist in the current context. I thought that maybe it had something to do with the fact that i'm using nested grids but i just don't know. Here is the general layout that I have going for the grids. I only need inline editing for rGridInductions:
<-- Javascript RadCodeBlock is up at the top -->
<telerik:RadGrid ID="rGrid_Project" runat="server" ...> . . . <telerik:RadMultiPage ID="rMulti_Schedule" Runat="server"> <telerik:RadPageView ID="rPage_Notes" runat="server" Selected="True"> <telerik:RadGrid ID="rGrid_Notes" runat="server" CellSpacing="0" ...> . . . </telerik:RadGrid> </telerik:RadPageView> <telerik:RadPageView ID = "rPage_Remarks" runat = "server"> <telerik:RadGrid ID="rGrid_Remarks" runat="server" CellSpacing="0" ...> . . . </telerik:RadGrid> </telerik:RadPageView> <telerik:RadPageView ID = "rPage_Inductions" runat = "server"> <telerik:RadGrid ID="rGrid_Inductions_Detail" runat="server" ...> . . . </telerik:RadGrid> </telerik:RadPageView> <telerik:RadPageView ID = "rPage_Completions" runat = "server"> <telerik:RadGrid ID="rGrid_Completion_Details" runat="server" ...> . . . </telerik:RadGrid> </telerik:RadPageView> </telerik:RadMultiPage> <Columns> <asp:Panel ID ="pivotchart" runat ="server"> <telerik:RadGrid ID="rGrid_Inductions" runat="server"...> . . . </telerik:RadGrid> </asp:Panel> </Columns></telerik:RadGrid>Thanks for the help!
