or
<telerik:RadGrid ID="RadGrid1" DataSourceID="SqlDataSource1" runat="server" AutoGenerateColumns="False" OnItemDeleted="RadGrid1_ItemDeleted" AllowAutomaticDeletes="True" ShowStatusBar="true" OnDataBound="RadGrid1_DataBound" > <MasterTableView DataSourceID="SqlDataSource1" DataKeyNames="Device_Id, Model" AllowMultiColumnSorting="True" GroupLoadMode="Server"> <Columns> <telerik:GridBoundColumn DataField="Device_Id" HeaderText="Device_Id" SortExpression="Device_Id" UniqueName="Device_Id"> </telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="Model" HeaderText="Model" SortExpression="Model" UniqueName="Model"> </telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="Model_Desc" HeaderText="Model_Desc" SortExpression="Model_Desc" UniqueName="Model_Desc"> </telerik:GridBoundColumn> <telerik:GridButtonColumn ConfirmText="Delete this device?" ConfirmDialogType="RadWindow" ConfirmTitle="Delete" ButtonType="ImageButton" CommandName="Delete" Text="Delete" UniqueName="DeleteColumn"> <HeaderStyle Width="50px" /> <ItemStyle HorizontalAlign="Center" CssClass="MyImageButton" Width="50px" /> </telerik:GridButtonColumn> </Columns> <NestedViewSettings DataSourceID="SqlDataSource2"> <ParentTableRelation> <telerik:GridRelationFields DetailKeyField="Device_Id" MasterKeyField="Device_Id" /> </ParentTableRelation> </NestedViewSettings> <NestedViewTemplate> <asp:Panel ID="NestedViewPanel" runat="server" CssClass="viewWrap" Width="95%"> <div class="contactWrap"> <fieldset style="padding: 10px;"> <legend style="padding: 5px;">Detail info for Device: ID: <%#Eval("Device_Id") %> | Model: <%#Eval("Model") %></legend> <ucUPNG:ucUPNG ID="ucUPNG" runat="server" Key='<%#Eval("Device_Id") %>' /> </fieldset> </div> </asp:Panel> </NestedViewTemplate> </MasterTableView> <PagerStyle Mode="NumericPages"></PagerStyle> <ClientSettings AllowDragToGroup="true" /> </telerik:RadGrid>'If sASI_Num <> "" then update Label1 & Have _ddCUName be updated with the value selected as it properly is returned by the stored procedure just not selected. <telerik:RadTextBox Runat="server" id="_txtCUNum" Width="50px"> </telerik:RadTextBox> </td> <td> <asp:Label ID="Label1" runat="server" Text="Label" Font-Bold="True" ForeColor="Green"></asp:Label> </td> <td>CU Name: </td> <td> <telerik:RadComboBox id="_ddCUName" Runat="server" Width="450px" EmptyMessage="Type a Credit Union Name" HighlightTemplatedItems="true" height="100px" EnableLoadOnDemand="true" OnItemsRequested="RadComboBoxProduct_ItemsRequested"> <headertemplate> <TABLE> <TBODY> <TR><TD>CU Name</TD><TD>City</TD><TD>State</TD></TR> </TBODY> </TABLE> </headertemplate> <itemtemplate> <TABLE> <TBODY> <TR> <TD><%#DataBinder.Eval(Container, "Text")%></TD> <TD><%#DataBinder.Eval(Container, "Attributes['City']")%></TD> <TD><%#DataBinder.Eval(Container, "Attributes['State']")%></TD> </TR> </TBODY> </TABLE> </itemtemplate> </telerik:RadComboBox></td> Protected Sub RadComboBoxProduct_ItemsRequested(ByVal sender As Object, ByVal e As RadComboBoxItemsRequestedEventArgs) Dim sAsi_Num As Object If Me._txtCUNum.text = "" Then sAsi_Num = DBNull.Value Else sAsi_Num = Me._txtCUNum.text End If Try oConn.Open() Dim ocmd As New SqlCommand("sp_getCUSearch", oConn) ocmd.CommandType = CommandType.StoredProcedure With ocmd.Parameters .Add(New SqlParameter("@asi_num", sAsi_Num)) .Add(New SqlParameter("@SearchStr", e.Text)) End With reader = ocmd.ExecuteReader() If reader.HasRows Then '------------------------- While reader.Read Dim item As New RadComboBoxItem() item.Text = DirectCast(reader("cuName"), String) item.Value = reader("asi_num").ToString() Dim sCity As String = DirectCast(reader("City"), String) Dim sState As String = DirectCast(reader("State_ID"), String) item.Attributes.Add("City", sCity.ToString()) item.Attributes.Add("State", sState.ToString()) 'item.Value += ":" + unitPrice.ToString() _ddCUName.Items.Add(item) item.DataBind() 'Next End While'If sASI_Num <> "" then update Label1 & Have _ddCUName be updated with the value selected as it properly is returned by the stored procedure just not selected. End If Catch ex As Exception Finally oConn.Close() End Try End Sub

This is only the second grid I have wired up. What might be causing this unwanted behavior?
Any help is appreciated.
PS- I am using v2010.1.209.35
This is only the second grid I have wired up. What might be causing this unwanted behavior?
Any help is appreciated.
PS- I am using v2010.1.209.35