I am using twitters responsive grid bootstrap system along with jquery ui datepicker. I have an inline datepicker parameter inside a 'row', 'spanX' structure, for example:
<div class="row"> <div class="span3 widget"> <div id="datepicker"></div> </div> ... </div> jQuery('#datepicker').datepicker({ inline: true, ... })
A suggested way to resize a Datepicker widget is to override the font size. However, this is not very useful if I want the size of the Datepicker to depend on the size of the spanX parent container when the window is resized or for different resolutions.
Is there an elegant way to keep the built-in Datepicker with 100% width, height of the parent container?
source share