This file contains 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
NewItemView = Backbone.View.extend({ | |
el: "div#newitm", | |
events: { | |
"click input#clicktocreate-button":"createItem" | |
}, | |
initialize: function() { | |
var that = this; | |
this.subitemView = new SubItemView({el:"div#newitem div.item-list"}); | |
this.$el.wizard({ | |
beforeSelect: function(event,state) { |
This file contains 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
/* | |
* jsTreeGrid 0.98 | |
* http://jsorm.com/ | |
* | |
* This plugin handles adding a grid to a tree to display additional data | |
* | |
* Dual licensed under the MIT and GPL licenses (same as jQuery): | |
* http://www.opensource.org/licenses/mit-license.php | |
* http://www.gnu.org/licenses/gpl.html | |
* |
NewerOlder