or
Private Sub uxRadGrid_ItemCommand(ByVal source As Object, ByVal e As Telerik.Web.UI.GridCommandEventArgs) Handles uxRadGrid.ItemCommand If e.CommandName = Telerik.Web.UI.RadGrid.InitInsertCommandName Then e.Canceled = True Dim newValues As System.Collections.Specialized.ListDictionary = New System.Collections.Specialized.ListDictionary() newValues("ShowTotal") = False newValues("IncludeInGrandTotal") = False e.Item.OwnerTableView.InsertItem(newValues) ElseIf e.CommandName = "InitInsertElement" Then e.Canceled = True Dim newValues As System.Collections.Specialized.ListDictionary = New System.Collections.Specialized.ListDictionary() newValues("IncludeInTotal") = False
' FOLLOWING LINE CRASHES BECAUSE IT IS INSERTING IN THE LEVEL 1 GRID - NOT THE CHILD GRID.
' NEED CODE FOR OPENING CHILD INSERT FORM e.Item.OwnerTableView.InsertItem(newValues) ElseIf (e.CommandName = "Update" OrElse
.... rest irrelevant<asp:HyperLink runat="server" Text="{Name}" bindfield="Name,ID" exportformats="html" OnPreRender="hlName_PreRender" /><asp:Label runat="server" Text="{Name} for PDF" exportformats="pdf" bindfield="Name" /><asp:Label runat="server" Text="{Name} for Excel" exportformats="excel" bindfield="Name" />
<telerik:RadComboBox
SkinID="RadCombobox_MultiSelect_Standard"
runat="server"
AllowCustomText="true"
HighlightTemplatedItems="true"
ChangeTextOnKeyBoardNavigation="False"
MarkFirstMatch="true"
Mode="MultiMode"
Width="100%"
MaxHeight="150px"
/>
<
div class="small">
<p>
<aca:RefDataLabel ID="lblStatus" runat="server"></aca:RefDataLabel></p>
<afs:RadComboBox runat="server" ID="rcbStatus" SkinID="RadCombobox_MultiSelect_Standard"
DisplayType="Value">
</afs:RadComboBox>
</div>
When I run my page in IE 8 with compatible mode 'On', I'm able to see my combo box normally. If I turn 'Off' the compatible mode, the combobox basically shows only the arrow to click. So, its size is reduced to zero.