mirror of
https://github.com/uxsolutions/bootstrap-datepicker.git
synced 2026-01-25 16:46:28 +00:00
Added example for embedded mode, closes #699
This commit is contained in:
parent
8861c2676a
commit
1127bf367c
@ -60,3 +60,18 @@ Instantiating the datepicker on a simple div will give an embedded picker that i
|
||||
|
||||
.. figure:: _static/screenshots/markup_inline.png
|
||||
:align: center
|
||||
|
||||
|
||||
Example to save the embedded datepicker value to a hidden field
|
||||
|
||||
.. code-block:: html
|
||||
|
||||
<div id="datepicker" data-date="12/03/2012"></div>
|
||||
<input type="hidden" id="my_hidden_input" />
|
||||
|
||||
$('#datepicker').datepicker();
|
||||
$("#datepicker").on("changeDate", function(event) {
|
||||
$("#my_hidden_input").val(
|
||||
$("#datepicker").datepicker('getFormattedDate')
|
||||
)
|
||||
});
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user