Hello,
I modeled our dropdown very similar to this example:
http://demos.telerik.com/aspnet-ajax/controls/examples/integration/gridincombobox/defaultcs.aspx?product=combobox
I am using twitter bootstrap as well as your controls within a site. I am having some issues with the radcombox in that when I turn EnableEmbeddedBaseStylesheet=true it will allow me to scroll and select items within the combobox like i want. The radcombox however is taking the look of the embedded style sheet which i do not want. if i turn it to false it now looks like i want it but when i enter an entry into the combox my information displays but I can no longer scroll through the returned items or select them. Anyone else run into this and how did you fix it?
Thanks,
I modeled our dropdown very similar to this example:
http://demos.telerik.com/aspnet-ajax/controls/examples/integration/gridincombobox/defaultcs.aspx?product=combobox
I am using twitter bootstrap as well as your controls within a site. I am having some issues with the radcombox in that when I turn EnableEmbeddedBaseStylesheet=true it will allow me to scroll and select items within the combobox like i want. The radcombox however is taking the look of the embedded style sheet which i do not want. if i turn it to false it now looks like i want it but when i enter an entry into the combox my information displays but I can no longer scroll through the returned items or select them. Anyone else run into this and how did you fix it?
Thanks,
<telerik:RadComboBox ID="rcmbSKU" Width="340px" runat="server" MarkFirstMatch="True" CssClass="SKUCombo" EnableEmbeddedBaseStylesheet="false" EnableEmbeddedSkins="false" AllowCustomText="True" OnClientDropDownOpening="HandleOpen" ExpandAnimation-Type="None" CollapseAnimation-Type="None" DropDownWidth="340px" onkeyup="HandleKeyPressed(this)"> <ItemTemplate> <telerik:RadGrid ID="rgridSKU" Width="325px" runat="server" OnNeedDataSource="rgridSKU_NeedDataSource" EnableEmbeddedBaseStylesheet="true" EnableEmbeddedSkins="true"> <MasterTableView NoMasterRecordsText="" AutoGenerateColumns="False" DataKeyNames="ItemCode, ItemKey, Description" Width="100%" ClientDataKeyNames="ItemCode, ItemKey, Description" TableLayout="Fixed"> <Columns> <telerik:GridBoundColumn HeaderText="SKU" DataField="ItemCode" UniqueName="ItemCode"> <HeaderStyle Width="90px"></HeaderStyle> </telerik:GridBoundColumn> <telerik:GridBoundColumn HeaderText="Description" DataField="Description" UniqueName="Description"> <HeaderStyle Width="215px"></HeaderStyle> </telerik:GridBoundColumn> </Columns> </MasterTableView> <ClientSettings> <ClientEvents OnRowClick="RowClicked" OnGridCreated="GridCreated"></ClientEvents> <Scrolling AllowScroll="true" UseStaticHeaders="true" ScrollHeight="300px"></Scrolling> </ClientSettings> </telerik:RadGrid> </ItemTemplate> <Items> <telerik:RadComboBoxItem runat="server" Text=" "></telerik:RadComboBoxItem> </Items> </telerik:RadComboBox>