Last active
January 28, 2017 15:36
-
-
Save graham-sportsmgmt/25821ed592adba377a7123bc5354504b to your computer and use it in GitHub Desktop.
Kendo-UI Base Test
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Ember from 'ember'; | |
export default Ember.Component.extend({ | |
tagName: 'input', | |
classNames: ['k-content'], | |
style: null, | |
didInsertElement: function () { | |
this._super(...arguments); | |
jQuery('#' + this.get('elementId')).kendoDatePicker(); | |
} | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Ember from 'ember'; | |
export default Ember.Controller.extend({ | |
actions: { | |
initialize: function() { | |
jQuery('#kendo-test').kendoDatePicker(); | |
} | |
} | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "0.11.0", | |
"EmberENV": { | |
"FEATURES": {} | |
}, | |
"options": { | |
"use_pods": false, | |
"enable-testing": false | |
}, | |
"dependencies": { | |
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.js", | |
"ember": "2.10.2", | |
"ember-data": "2.11.0", | |
"ember-template-compiler": "2.10.2", | |
"ember-testing": "2.10.2", | |
"kendo": "https://kendo.cdn.telerik.com/2017.1.118/js/kendo.all.min.js", | |
"kendo-css": "https://kendo.cdn.telerik.com/2017.1.118/styles/kendo.common.min.css", | |
"kendo-theme": "https://kendo.cdn.telerik.com/2017.1.118/styles/kendo.default.min.css", | |
"bootstrap": "https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css", | |
"bootstrap-js": "https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" | |
}, | |
"addons": {} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment