or
<telerik:RadComboBox ID="PrjComboBox" runat="server" AllowCustomText="true" MaxLength="500" Width="80%" OnPreRender="PrjComboBox_PreRender"> <ItemTemplate> <div> <asp:CheckBox runat="server" ID="PrjComboBoxItemCheckBox" Checked="false" onclick="onPrjComboBoxItemCheckBoxClick(this)"/> <asp:Label runat="server" ID="PrjComboBoxItemLabel" AssociatedControlID="PrjComboBoxItemCheckBox" Text='<%# DataBinder.Eval(Container, "Value") %>'> </asp:Label> </div> </ItemTemplate> </telerik:RadComboBox>| Trace.Write("RegiStar", "Start toevoegen mat_Ereigniseingabe"); |
| string userControlName = "Mat_Tab_DetailInventar.ascx"; |
| Control userControl = Page.LoadControl(userControlName); |
| userControl.ID = e.PageView.ID + "_userControl"; |
| e.PageView.Controls.Add(userControl); |
| Trace.Write("RegiStar", "einde toevoegen mat_Ereigniseingabe"); |


Hey all.
I have this problem, when i resize the browser and the searchboxs parent div has display:none; When i display the searchbox again, position of the buttons, and the textfield is pushed in.
i've created a small snippet, to show you what i mean.
The problem first occurred when i was implemented the searchbox into a bootstrap navigation.
Any help would be appreciated!
<div class="testClass"> <telerik:RadSearchBox ID="RadSearchWebTimetable" runat="server" SearchContext-ShowDefaultItem="false" HighlightFirstMatch="True" OnSearch="SearchBox_OnSelected" MinFilterLength="2" Width="100%" EmptyMessage="Søgetekst"> <DropDownSettings Height="300" Width="400"> <ClientTemplate> <div class="#= DataItem.cssClass #"> #= Text # <p style="margin-bottom: 0px; margin-top: -15px;"> <small class="text-muted text-small"> #= DataItem.Description # </small> </p> </div> </ClientTemplate> </DropDownSettings> <WebServiceSettings Method="UMS_Search" path="WebServices/Search.asmx" /> </telerik:RadSearchBox></div><asp:Button runat="server" OnClientClick=" $('.testClass').hide();return false; " Text="Hide"/><asp:Button runat="server" OnClientClick=" $('.testClass').show();return false; " Text="Show"/>