By default all of my input fields are 100% in width. For one of my form fields I need the label to be inline with the input field. The rest of them can all be stacked. I tried the following but it is still pushing the input field down below its label:
<div class="form-inline">
<div class="form-group">
<asp:Label ID="fieldLabel1" runat="server" Text="Field label 1" AssociatedControlID="ntxtFieldLabel1"></asp:Label>
<telerik:RadNumericTextBox ID="ntxtFieldLabel1" runat="server" Width="100%" CssClass="form-control"></telerik:RadNumericTextBox>
</div>
</div>