Click here to Skip to main content
15,905,420 members
Please Sign up or sign in to vote.
2.00/5 (1 vote)
See more:
hi can any one help me to solve this? am binding data to dropdownlist.


html code
XML
<telerik:RadComboBox ID="cmbEPS" runat="server" Height="22px" Width="200px">
                                    <ItemTemplate>
                                        <div onclick="StopPropagation(event)">
                                            <asp:TreeView ID="tvWBS" runat="server" NodeStyle-NodeSpacing="2px"
                                                ShowLines="true">
                                                <HoverNodeStyle CssClass="CustomNodeColor" />
                                                <SelectedNodeStyle BackColor="#5B5B5B" ForeColor="White" HorizontalPadding="3px" />
                                                <NodeStyle ForeColor="#000000" />
                                            </asp:TreeView>
                                        </div>
                                    </ItemTemplate>
                                </telerik:RadComboBox>
                                <asp:RequiredFieldValidator ID="rfvActivityGroup" runat="server" ControlToValidate="cmbActivityGroup"
                                    Display="None" ErrorMessage="Select EPS" SetFocusOnError="True" ValidationGroup="g"
                                    Visible="true"></asp:RequiredFieldValidator>




.......................................................................................................................................................................................................
in .cs

RadComboBox cmbEPS = (RadComboBox)phDynamic.FindControl("cmbEPS");
       if (cmbEPS !=null)
       {

               RadTreeView rtvEPS = (RadTreeView)cmbEPS.Items[0].FindControl("rtvEPS");//in this line am getting error..


thank you
Posted
Updated 27-Mar-13 20:52pm
v3

1 solution

The only part of that instruction using an index is the Items collection. Which implies there are no Items to select from.
Check the size of the collection when you check for a null control, and before you access it.
 
Share this answer
 
Comments
ythisbug 29-Mar-13 2:04am    
thank you
OriginalGriff 29-Mar-13 4:34am    
You're welcome!

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900