or
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below. |
|
<telerik:GridTemplateColumn UniqueName="colPrimaryProcedure" HeaderText="" ItemStyle-HorizontalAlign="Center"><HeaderStyle HorizontalAlign="Center" /> <ItemTemplate> <asp:checkbox ID="chkPrimary" runat="server" /> </ItemTemplate> </telerik:GridTemplateColumn>Dim chk As CheckBox = DirectCast(item("BlockCheck").Controls(0), CheckBox)chk.Enabled = Truechk.Attributes.Add("onmouseenter", "changeEditor(this)")function changeEditor(sender) { var grid = $find("<%=RadGrid1.ClientID%>"); var cell = Telerik.Web.UI.Grid.GetFirstParentByTagName(sender, "td"); var batchManager = grid.get_batchEditingManager(); grid.get_batchEditingManager().openCellForEdit(cell);
}<telerik:GridCheckBoxColumn DataField="BlockCheck" UniqueName="BlockCheck" AutoPostBackOnFilter="true"> <HeaderStyle ForeColor="Black" Width="20%"></HeaderStyle></telerik:GridCheckBoxColumn><telerik:GridTemplateColumn DataField="BlockCheck" Visible="false"> <ItemTemplate> <asp:CheckBox ID="Cb1" Checked='<%# Eval("BlockCheck")%>' runat="server"/> </ItemTemplate> <EditItemTemplate> <asp:CheckBox ID="Cb2" Checked='<%# Bind("BlockCheck")%>' runat="server" /> </EditItemTemplate></telerik:GridTemplateColumn>
<telerik:RadComboBox ID="rcbCountry" runat="server" AppendDataBoundItems="true" DataSourceID="CountriesDataSource" DataTextField="Value" DataValueField="Key" Width="100px" DropDownAutoWidth="Enabled" RenderMode="Lightweight"> <Items> <telerik:RadComboBoxItem Text="All" /> </Items></telerik:RadComboBox>