This question is locked. New answers and comments are not allowed.
The Timepicker control has a large amount of whitespace around it, even when the popup button is switched off. I want to place two or more TimePickers side by side and have no white space between them, I'd also like to alter the width of the TimePickers.
Essentially:
<%= Html.Telerik().TimePicker().Name("t1").ShowButton(false).OpenOnFocus(true) %>
<%= Html.Telerik().TimePicker().Name("t2").ShowButton(false).OpenOnFocus(true) %>
<%= Html.Telerik().TimePicker().Name("t3").ShowButton(false).OpenOnFocus(true) %>
Should appear like:
<input type="text" style="width:50px;" />
<input type="text" style="width:50px;" />
<input type="text" style="width:50px;" />
I'm using MVC2. I've tried messing around with the .t-widget .t-timepicker .t-picker-wrap and .t-input CSS but can't find a way to remove it.
Essentially:
<%= Html.Telerik().TimePicker().Name("t1").ShowButton(false).OpenOnFocus(true) %>
<%= Html.Telerik().TimePicker().Name("t2").ShowButton(false).OpenOnFocus(true) %>
<%= Html.Telerik().TimePicker().Name("t3").ShowButton(false).OpenOnFocus(true) %>
<input type="text" style="width:50px;" />
<input type="text" style="width:50px;" />
<input type="text" style="width:50px;" />
I'm using MVC2. I've tried messing around with the .t-widget .t-timepicker .t-picker-wrap and .t-input CSS but can't find a way to remove it.