插入后Radcombo盒子消失了吗?

时间:2015-03-02 16:32:57

标签: telerik radgrid

我正在开发一种可以用作表格的radgrid。

其中一列使用GridTemplate列中的RadComboBox。

我的问题是,在用户点击“插入”按钮后,页面会刷新,但用户对radcomboBox的选择已经消失:

The 3 rows  below the drop down should show what the user selected

enter image description here

这是我的模板列的

的aspx代码
<telerik:GridTemplateColumn UniqueName="UserCol" HeaderText="Employee" DataField="UserID">

                           <EditItemTemplate>
                               <telerik:RadComboBox ID="RadComboBox1" runat="server" AutoPostBack="false" CausesValidation="true"
                                            Width="240" MaxHeight="200px" OnItemsRequested="ddEmployee_ItemsRequested" AllowCustomText="true"
                                            EnableLoadOnDemand="true" ShowMoreResultsBox="true" EnableVirtualScrolling="true"
                                            MarkFirstMatch="false" >
                                </telerik:RadComboBox>
                           </EditItemTemplate>
                       </telerik:GridTemplateColumn>

如何确保用户对RadComboBox的选择仍然可见?

0 个答案:

没有答案