2017 © Pedro PelĂĄez
 

library bootstrapdatepicker-control

Datepicker for nette bootstrap form renderer

image

flame/bootstrapdatepicker-control

Datepicker for nette bootstrap form renderer

  • JavaScript
  • 1 Dependents
  • 0 Suggesters
  • 3 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

Bootstrap Datepicker

Add dapepicker control to Nette forms styled by Twitter Bootstrap, (*1)

Based on - https://github.com/lichtner/bootstrap-datepicker (original from Stefan Petre's http://www.eyecon.ro/bootstrap-datepicker/) - https://github.com/JanTvrdik/NetteExtras/tree/master/NetteExtras/Components/DatePicker, (*2)

Config

1) Attach necessary files (jQuery, Twitter Bootstrap and netteForms are required) and following lines
<link href="{$basePath}/css/datepicker.css" rel="stylesheet" media="screen">
<script src="{$basePath}/js/bootstrap-datepicker.js"></script>

You can attach language file., (*3)

    <script src="{$basePath}/js/bootstrap-datepicker.cs.js"></script>

Translantions can be downloaded from https://github.com/lichtner/bootstrap-datepicker/tree/master/js/locales or you can make you own., (*4)

2) Init datepickers
    $(document).ready(function () {
        $('.bootstrapDatePicker').datepicker();
    });
3) Add extension method to all form (date format and languge are set globally)
        \Flame\Forms\Controls\BootstrapDatePicker::register();

Default values ('yyyy-mm-dd', 'en', 'addDatePicker'), (*5)

Full example of usage

        $form->addDatePicker('date', "Date")
        ->setClassName('myBetterClass')//'bootstrapDatePicker' defalt
        ->setAutoclose(true)//false default
        ->setTodayHighlight()//or setTodadyHighlight(true); false default
        ->setWeekStart(1)//0 for Sunday, 6 for Saturday; 1 is default
        ->setKeyboardNavigation()//or setKyeboardnavigation(true); true default
        ->setTodayButton(\Flame\Forms\Controls\BootstrapDatePicker::TODAY_BUTTON_TRUE)//TODAY_BUTTON_FALSE | TODAY_BUTTON_TRUE | TODAY_BUTTON_LINKED; TODAY_BUTTON_FALSE default
        ->setStartview(\Flame\Forms\Controls\BootstrapDatePicker::STARTVIEW_MONTH)//STARTVIEW_MONTH | STARTVIEW_YEAR | STARTVIEW_DECADE; STARTVIEW_MONTH default
        ->setRequired()
        ->setInputButtonStyle(\Flame\Forms\Controls\BootstrapDatePicker::BUTTON_STYLE_ICON_RIGHT)//BUTTON_STYLE_ICON_LEFT | BUTTON_STYLE_ICON_RIGHT | BUTTON_STYLE_ICON_NONE; BUTTON_STYLE_ICON_RIGHT default
        ->addCondition(Nette\Forms\Form::FILLED)
        ->addRule(
            \Flame\Forms\Controls\BootstrapDatePicker::DATE_RANGE,
            'Entered date is not within allowed range.',
            array(new DateTime('2012-10-02'),   null));

Alternatively you can use, (*6)

      ->addRule(
            Flame\Forms\Controls\BootstrapDatePicker::DATE_RANGE,
            'Entered date is not within allowed range.',
            array(new DateTime('2012-10-02'), null));

to set only calendar minimum (or only maximum). Datepicker will show only applicable dates. Value is checked on submit by javascript and then by php on server side., (*7)

Use Flame\Forms\Controls\BootstrapDatePicker::DATE_RANGE to apply date range. \Nette\Forms\Form::RANGE will not work, (*8)

Control generates something like this

    <div class="input-append date myBetterClass"
        data-date-autoclose="true"
        data-date-start-view="0"
        data-date-today-btn="1"
        data-date-today-highlight="1"
        data-date-weekstart="1"
        data-date-keyboard-navigation="1"
        data-date-format="dd.mm.yyyy"
        data-date-language="cs"
        data-date-startdate="02.10.2012">
            <input type="text"
                class="text" name="date"
                id="frmform-date"
                required="required"
                data-nette-rules="{op:':filled',msg:'Please complete mandatory field.'},{op:':filled',rules:[{op:':dateRange',msg:'Entered date is not within allowed range.',arg:[{date:'2012-10-02 00:00:00',timezone_type:3,timezone:&quot;Europe\/Prague&quot;},null]}],control:'date'}">
            <span class="add-on"><i class="icon-calendar"></i></span>
    </div>

The Versions

20/01 2013

dev-master

9999999-dev https://github.com/flame-org/BootstrapDatepicker-Control

Datepicker for nette bootstrap form renderer

  Sources   Download

BSD-2-Clause-FreeBSD

The Requires

 

by Michael Remis

bootstrap datepicker forms nette kdyby flame