Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tsega/meteor-bootstrap3-datetimepicker

Bootstrap 3 DateTime picker from @Eonasdan, https://github.com/Eonasdan/bootstrap-datetimepicker, packaged for Meteor.js
https://github.com/tsega/meteor-bootstrap3-datetimepicker

Last synced: about 2 months ago
JSON representation

Bootstrap 3 DateTime picker from @Eonasdan, https://github.com/Eonasdan/bootstrap-datetimepicker, packaged for Meteor.js

Awesome Lists containing this project

README

        

bootstrap3-datetimepicker
======================

Bootstrap 3 DateTime picker from Eonasdan, https://github.com/Eonasdan/bootstrap-datetimepicker, packaged for Meteor.js

To install
----------

```sh
$ meteor add tsega:bootstrap3-datetimepicker
```

To use
------

Set up your markup, in the example below a grouped calendar icon with text input (bootstrap3)

```html

...





...

```

Using jQuery initiate the control as datetime picker after the template has been rendered.

```js
Template.tempName.onRendered(function() {
this.$('.datetimepicker').datetimepicker();
});
```