bootjack_datepicker 0.5.1 copy "bootjack_datepicker: ^0.5.1" to clipboard
bootjack_datepicker: ^0.5.1 copied to clipboard

outdatedDart 1 only

Bootjack datepicker component is a datepicker component of Bootjack.

#Bootjack Datepicker

Bootjack datepicker component is a datepicker component of Bootjack.

##Install from Dart Pub Repository

Include the following in your pubspec.yaml:

dependencies:
  bootjack_datepicker: any

Then run the Pub Package Manager in Dart Editor (Tool > Pub Install). If you are using a different editor, run the command (comes with the Dart SDK):

pub install

##Usage

First of all in your HTML file, you need to include the CSS resource:

<head>
	...
	<link rel="stylesheet" href="packages/bootjack_datepicker/css/bootjack_datepicker.min.css">
</head>

###Embedded calendar

<div data-picker="calendar" data-date="2013/09/16" data-date-format="yyyy/MM/dd"></div>

With the following global registration in Dart:

void main() {
	Calendar.use();
}

###Datepicker

<div class="input-group" data-picker="datepicker" 
  data-date="2013/09/16" data-date-format="yyyy/MM/dd">
	
  <input type="text" class="form-control">
  
  <span class="input-group-btn">
	
	<button class="btn btn-default dropdown-toggle" type="button" 
	  data-toggle="dropdown" data-target="#">
	  <span class="glyphicon glyphicon-calendar"></span>
	</button>
	
	<div class="dropdown-menu" >
	</div>
	
  </span>
</div>

With the following global registration in Dart:

void main() {
	Datepicker.use();
}

Check more examples.

##Notes to Contributors

###Test and Debug

You are welcome to submit bugs and feature requests. Or even better if you can fix or implement them!

###Fork Bootjack Datepicker

If you'd like to contribute back to the core, you can fork this repository and send us a pull request, when it is ready.

Please be aware that one of Rikulo's design goals is to keep the sphere of API as neat and consistency as possible. Strong enhancement always demands greater consensus.

If you are new to Git or GitHub, please read this guide first.

0
likes
0
pub points
58%
popularity

Publisher

verified publisherquire.io

Bootjack datepicker component is a datepicker component of Bootjack.

Repository (GitHub)
View/report issues

Documentation

Documentation

License

unknown (LICENSE)

Dependencies

bootjack, browser, intl

More

Packages that depend on bootjack_datepicker