or
Microsoft JScript runtime error: Sys.WebForms.PageRequestManagerServerErrorException: Field Leading not found in the source table. Please check the expression syntax.<telerik:RadAjaxPanel ID="rap" runat="server" Width="90%"> <telerik:RadGrid ID="rg" runat="server" AllowAutomaticInserts="false" Skin="Office2007" AllowFilteringByColumn="True" GroupingEnabled="true" EnableViewState="true" AllowPaging="True" AllowSorting="True" AutoGenerateColumns="True" GridLines="None" ShowStatusBar="True" OnNeedDataSource="rg_NeedDataSource" EnableLinqExpressions="true" PageSize="20" Width="97%" ShowGroupPanel="true" OnColumnCreated="rg_ColCreated"> <MasterTableView EnableNoRecordsTemplate="true" CellSpacing="-1" CommandItemDisplay="None" AllowMultiColumnSorting="true" PagerStyle-Position="Bottom" PagerStyle-Mode="NextPrevAndNumeric" ClientDataKeyNames="oid" DataKeyNames="oid"> <NoRecordsTemplate> <div> Geen items gevonden.</div> </NoRecordsTemplate> <Columns> </Columns> </MasterTableView> <ClientSettings AllowColumnsReorder="True" AllowDragToGroup="True" ReorderColumnsOnClient="True"> <Selecting AllowRowSelect="True" /> <Scrolling AllowScroll="True" UseStaticHeaders="True" /> </ClientSettings> </telerik:RadGrid></telerik:RadAjaxPanel><table style="width: 100%;"> <tr> <td> <table cellpadding="0" cellspacing="0"> <tr> <td> <asp:RadioButton ID="rbtnq9_2_Y" GroupName="Group9_2" runat="server" Text="Y" /> </td> <td> <asp:RadioButton ID="rbtnq9_2_N" GroupName="Group9_2" runat="server" Text="N" /> </td> </tr> </table> </td> <td> </td> </tr> </table>protected void btnqfollowup_Click(object sender, EventArgs e) { UDFCheckFollowUp(rbtnq9_1_Y, rbtnq9_1_N); } public void UDFCheckFollowUp(RadioButton rbtnq9_1_Y, RadioButton rbtnq9_1_N) { if (rbtnq9_1_Y.Checked == true) { rbtnq9_2_Y.Enabled = true; rbtnq9_2_N.Enabled = true; rbtnq9_3_Y.Enabled = true; rbtnq9_3_N.Enabled = true; DropDownListRating9_3.Enabled = true; } else if (rbtnq9_1_N.Checked == true) { rbtnq9_2_Y.Enabled = false; rbtnq9_2_N.Enabled = false; rbtnq9_3_Y.Enabled = false; rbtnq9_3_N.Enabled = false; DropDownListRating9_3.Enabled = false; } else { rbtnq9_2_Y.Enabled = false; rbtnq9_2_N.Enabled = false; rbtnq9_3_Y.Enabled = false; rbtnq9_3_N.Enabled = false; DropDownListRating9_3.Enabled = false; } }function RadioClickFollowUp(radioButton) { document.getElementById('btnqfollowup').click(); }


<telerik:RadGrid ID="GridDocument" runat="server" AutoGenerateColumns="False" AllowPaging="True" AllowSorting="True" AllowMultiRowSelection="true" Width="100%" Height="345px" OnPageIndexChanged="GridDocument_PageIndexChanged" OnSortCommand="GridDocument_SortCommand"> <PagerStyle AlwaysVisible="true" /> <MasterTableView DataKeyNames="ID" ClientDataKeyNames="ID" TableLayout="Fixed"> <Columns> ... <telerik:GridBoundColumn DataField="Version" HeaderText="<nobr>Version</nobr>" UniqueName="Version" DataFormatString="<nobr>{0}</nobr>" SortExpression="Version"> <HeaderStyle Width="70px" /> <ItemStyle Width="70px" /> </telerik:GridBoundColumn> ... </Columns> </MasterTableView> <ClientSettings> <Scrolling AllowScroll="true" UseStaticHeaders="true" /> <Resizing AllowColumnResize="True" EnableRealTimeResize="true" ClipCellContentOnResize="true"></Resizing> </ClientSettings> </telerik:RadGrid>