<
telerik:RadGrid runat="Server" ID="InfoGrid" Skin="Office2007" AutoGenerateColumns="true" AllowAutomaticInserts="true" AllowAutomaticUpdates="true" AllowAutomaticDeletes="true">
<SelectedItemStyle CssClass="SelectedStyle" />
<MasterTableView CommandItemDisplay="TopAndBottom">
<CommandItemTemplate>
<asp:LinkButton runat="Server" ID="btnAdd2" Text="Add Incentive" CommandName="InitInsert" />
</CommandItemTemplate>
<Columns>
<telerik:GridBoundColumn UniqueName="IncentiveID" ReadOnly="true" Display="False" DataField="IncentiveID" ForceExtractValue="InEditMode" />
<telerik:GridBoundColumn HeaderText="Details" DataField="Incentive" UniqueName="Incentive" />
</Columns>
<NoRecordsTemplate>There Are Currently No Incentives</NoRecordsTemplate>
</MasterTableView>
</telerik:RadGrid>
GridClientSelectColumn
when the user selects the checkbox on a row.( the grid is multirow grid i used)
Would be appreciable to know the answer for this.
Thanks in advance,
SR

<telerik:RadComboBox ID="c1" runat="server" CssClass="RadComboBox_rtl" DropDownCssClass="RadComboBoxDropDown_rtl">...</telerik:RadComboBox>| function onClientLoadHandler(sender, e) { |
| sender._virtualScroll = false; |
| } |
| protected void RadComboBox1_ItemsRequested(object sender, RadComboBoxItemsRequestedEventArgs e) |
| { |
| DataTable data = GetData(e.Text); |
| // ... |
| e.EndOfItems = true; |
| } |
| [WebMethod] |
| public static RadComboBoxData GetCompanyNames(RadComboBoxContext context) |
| { |
| DataTable data = GetData(context.Text); |
| RadComboBoxData comboData = new RadComboBoxData(); |
| // ... |
| comboData.Items = result.ToArray(); |
| comboData.EndOfItems = true; |
| return comboData; |
| } |
| [WebMethod] |
| public RadComboBoxData GetCompanyNames(RadComboBoxContext context) |
| { |
| RadComboBoxData comboData = new RadComboBoxData(); |
| // ... |
| comboData.Items = result.ToArray(); |
| comboData.EndOfItems = true; |
| return comboData; |
| } |