css - GWTBootstrap3 / missing arrows in DateTimePicker -


i'm using datetimepicker in ui.xml follows:

<b:label text="{messages.gwt_ui_from}" /> <b.date:datetimepicker stylename="btn-block"     ui:field="dtpfrom" format="dd.mm.yyyy" minview="month"     maxview="year" autoclose="true" haskeyboardnavigation="true" highlighttoday="true"/> <b:label text="{messages.gwt_ui_to}" /> <b.date:datetimepicker stylename="btn-block"     ui:field="dtpto" format="dd.mm.yyyy" minview="month"     maxview="year" autoclose="true" haskeyboardnavigation="true" highlighttoday="true"/> 

as can see, style set "btn-block".

but result following picture:

datetimepickerwithoutarrows

how can keep style , still arrows back?

thanks help! aurel

hello having same problem i've had

the solution in case quite simple (after having searched 3 days...)

<b.date:datetimepicker stylename="btn-block form-control"     b:id="dtptoid" ui:field="dtpto" format="dd.mm.yyyy"     minview="month" maxview="year" autoclose="true"     haskeyboardnavigation="true" highlighttoday="true" /> 

just add form-control stylename attribute of datetimepicker , enjoy arrows.

hope helps someone!


Comments