%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.149 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/11584/cwd/html/ppaobm/vendor/bower-asset/bootstrap-datepicker/docs/ |
Upload File : |
Events ====== Datepicker triggers a number of events in certain circumstances. All events have extra data attached to the event object that is passed to any event handlers :: $('.datepicker').datepicker() .on(picker_event, function(e) { // `e` here contains the extra attributes }); * ``date``: the relevant Date object, in local timezone. For a multidate picker, this will be the latest date picked. * ``dates``: an Array of Date objects, in local timezone, when using a multidate picker. * ``format([ix], [format])``: a function to make formatting ``date`` easier. ``ix`` can be the index of a Date in the ``dates`` array to format; if absent, the last date selected will be used. ``format`` can be any format string that datepicker supports; if absent, the format set on the datepicker will be used. Both arguments are optional. show ---- Fired when the date picker is displayed. hide ---- Fired when the date picker is hidden. clearDate --------- Fired when the date is cleared, normally when the "clear" button (enabled with the ``clearBtn`` option) is pressed. changeDate ---------- Fired when the date is changed. changeMonth ----------- Fired when the *view* month is changed from year view. changeYear ---------- Fired when the *view* year is changed from decade view. changeDecade ------------ Fired when the *view* decade is changed from century view. changeCentury ------------- Fired when the *view* century is changed from millennium view.