We are loading elements of Radcombobox with event OnItemsRequested.
When the Radcombobox item is selected the OnSelectedIndexChanged not work.
When the Radcombobox item is selected the OnSelectedIndexChanged not work.
<asp:UpdatePanel ID="upnDadosGerais5" runat="server" UpdateMode="Conditional" ChildrenAsTriggers="false"> <ContentTemplate> <div style="width: 949px; overflow: auto"> <telerik:RadGrid ID="rgComposicao" runat="server" AutoGenerateColumns="false" OnNeedDataSource="Composicao__NeedDataSource" OnItemDataBound="rgComposicao_ItemDataBound" Height="230px" HorizontalAlign="Center"> <MasterTableView DataKeyNames="IdComposicao"> <Columns> <telerik:GridTemplateColumn HeaderText="<%$ Resources:Label, FormAberto %>" DataField="FormAberto" HeaderStyle-Width="180" ItemStyle-Width="180" UniqueName="FormAberto" SortExpression="FormAberto"> <ItemTemplate> <telerik:RadComboBox ID="rdFormatoAbertoComprimento" runat="server" EnableEmbeddedSkins="false" Skin="GraphControl" Width="160" DropDownWidth="150" EnableLoadOnDemand="True" Height="200" OnItemsRequested="rdFormatoAbertoComprimento_OnItemsRequested" OnSelectedIndex="rdFormatoAbertoComprimento_OnSelectedIndexChanged" OnDataBinding="rdFormatoAbertoComprimento_OnDataBinding" EnablePostBackOnRowClick="true"> </telerik:RadComboBox> </ItemTemplate> </telerik:GridTemplateColumn> </Columns> </MasterTableView> </telerik:RadGrid> </div> </ContentTemplate> </asp:UpdatePanel>