我在我的rad网格编辑表单模板中使用以下rad组合框:
<telerik:RadComboBox ID="rcmbGroundPlan" runat="server" CheckBoxes="true" Text='<%# Bind("Fd_Groundplan") %>' Width="250">
<Items>
<telerik:RadComboBoxItem Text="H" />
<telerik:RadComboBoxItem Text="U" />
<telerik:RadComboBoxItem Text="T" />
<telerik:RadComboBoxItem Text="L" />
<telerik:RadComboBoxItem Text="cruciform" />
<telerik:RadComboBoxItem Text="T" />
</Items>
</telerik:RadComboBox>
我正在使用rad grid AllowAutomaticUpdates =“True”,只要radcombox的宽度为650像素,一切正常。但是,如果我减小宽度并且所选复选框更多,则文本将更改为已检查的项目数,例如已选中3项或已检查4项,此字符串将插入到我的数据库而不是实际选定的项目。我怎么能避免这种情况。我是否必须始终保持增加我的rad组合框宽度。请指导。
答案 0 :(得分:0)
使用rad组合框的以下属性 CheckedItemsTexts =“DisplayAllInInput”我能够得到我想要的解决方案。