Rad 组合框多 select 复选框文本?

Rad combo box multi select checkboxes text?

我在我的 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 组合框宽度。请指导。

使用下面的属性的rad组合框 CheckedItemsTexts="DisplayAllInInput" 我能够得到我想要的解决方案。