However, I need to handle row selection in the grid on the server side so I can take additional action whenever the selection changes but my OnSelectedIndexChanged event never seems to fire for the RadGrid.
Here is my markup:
<radc:RadComboBox id="VisitList" Width="600px" runat="server" >
<ItemTemplate>
<radg:RadGrid id="VisitsGrid" Width="100%" runat="server" EnableAJAX="true"
EnableOutsideScripts="true" UseEmbeddedScripts="False"
AllowSorting="False" AutoGenerateColumns="True"
AllowPaging="false"
EnableViewState="True" ShowGroupPanel="False"
GridLines="Horizontal" Skin="Valco"
CellPadding="1"
OnSelectedIndexChanged="VisitsGrid_RowChanged"
radControlsDir="./Resources/RadControls/" >
<MasterTableView AutoGenerateColumns="True"
DataSourceID="SqlDataSourceVisits" DataKeyNames="AccountID"
Width="100%">
</MasterTableView>
<ClientSettings EnableClientKeyValues="true" >
<Selecting AllowRowSelect="true" />
<Scrolling AllowScroll="true" UseStaticHeaders="true" ScrollHeight="60px" />
</ClientSettings>
</radg:RadGrid>
</ItemTemplate>
<Items>
<radc:RadComboBoxItem ID="VisitsListItem" runat="server" Text=" ">
</radc:RadComboBoxItem>
</Items>
</radc:RadComboBox>
Any suggestions?
Thanks
Ed Hinton