Your IP : 216.73.216.40


Current Path : /var/www/html/ajay/phpwebsite-1.8.x/javascript/datepicker/
Upload File :
Current File : /var/www/html/ajay/phpwebsite-1.8.x/javascript/datepicker/readme.txt

Datepicker was written by Marc Grabanski and Keith Wood. Please see ui.datepicker.js
for more details.

Usage
-----------------------------
$vars['id'] = 'date-field';
$vars['name'] = 'pick_a_date';
$vars['value'] = $current_date; // default format '%m/%d/%Y'

$input = javascript('datepicker', $vars);

echo '<form>' . $input . '</form>';

/////////////////////////////////////

If you are using the Form class you could just do the following:

$form = new PHPWS_Form('date-form');
$form->addText('start_date', strftime('%m/%d/%Y'));
$form->setExtra('start_date', 'class="datepicker"');