##// END OF EJS Templates
Everyone uses one model
Everyone uses one model

File last commit:

r14591:a76124e0
r14591:a76124e0
Show More
widget_bool.js
121 lines | 4.3 KiB | application/javascript | JavascriptLexer
Jonathan Frederic
Added standard IPY JS header to widget JS files.
r14366 //----------------------------------------------------------------------------
// Copyright (C) 2013 The IPython Development Team
//
// Distributed under the terms of the BSD License. The full license is in
// the file COPYING, distributed as part of this software.
//----------------------------------------------------------------------------
//============================================================================
// BoolWidget
//============================================================================
/**
* @module IPython
* @namespace IPython
**/
Jonathan Frederic
Added boolean widget
r14259
Jonathan Frederic
Updated require.js references
r14537 define(["notebook/js/widgets/widget"], function(widget_manager){
Jonathan Frederic
s/BaseWidgetView/WidgetView and s/WidgetView/DOMWidgetView
r14564 var CheckboxView = IPython.DOMWidgetView.extend({
Jonathan Frederic
Added boolean widget
r14259
// Called when view is rendered.
render : function(){
Jonathan Frederic
Make sure backbone events fire....
r14395 this.$el
Jonathan Frederic
MAJOR CSS FIXES...
r14295 .addClass('widget-hbox-single');
this.$label = $('<div />')
Jonathan Frederic
Fixed vertical widget labels
r14297 .addClass('widget-hlabel')
Jonathan Frederic
MAJOR CSS FIXES...
r14295 .appendTo(this.$el)
Jonathan Frederic
Added labels to basic widgets
r14292 .hide();
Jonathan Frederic
Fixed checkbox click event handler
r14299 var that = this;
Jonathan Frederic
Added boolean widget
r14259 this.$checkbox = $('<input />')
.attr('type', 'checkbox')
Jonathan Frederic
Fixed checkbox click event handler
r14299 .click(function(el) {
Jonathan Frederic
comment model.set, so we know that it triggers update on other views
r14569
// Calling model.set will trigger all of the other views of the
// model to update.
Jonathan Frederic
add locks to update everywhere by using options to pass this...
r14570 that.model.set('value', that.$checkbox.prop('checked'), {updated_view: this});
Jonathan Frederic
Moved touch logic out of model into view....
r14482 that.touch();
Jonathan Frederic
Fixed checkbox click event handler
r14299 })
Jonathan Frederic
MAJOR CSS FIXES...
r14295 .appendTo(this.$el);
Jonathan Frederic
Added boolean widget
r14259
Jonathan Frederic
Set default element to be styled in built-in views
r14314 this.$el_to_style = this.$checkbox; // Set default element to style
Jonathan Frederic
Added boolean widget
r14259 this.update(); // Set defaults.
},
Jonathan Frederic
add locks to update everywhere by using options to pass this...
r14570 update : function(options){
Jonathan Frederic
make JS update comment more descriptive (english)
r14568 // Update the contents of this view
//
// Called when the model is changed. The model may have been
// changed by another view or by a state update from the back-end.
Jonathan Frederic
add locks to update everywhere by using options to pass this...
r14570 if (options === undefined || options.updated_view != this) {
Jonathan Frederic
Added boolean widget
r14259 this.$checkbox.prop('checked', this.model.get('value'));
Jonathan Frederic
Added labels to basic widgets
r14292
Jonathan Frederic
Made checkbox and togglebutton compatable with disabled property
r14304 var disabled = this.model.get('disabled');
this.$checkbox.prop('disabled', disabled);
Jonathan Frederic
Added labels to basic widgets
r14292 var description = this.model.get('description');
Jonathan Frederic
jslint /widgets
r14466 if (description.length === 0) {
Jonathan Frederic
MAJOR CSS FIXES...
r14295 this.$label.hide();
Jonathan Frederic
Added labels to basic widgets
r14292 } else {
Jonathan Frederic
MAJOR CSS FIXES...
r14295 this.$label.html(description);
this.$label.show();
Jonathan Frederic
Added labels to basic widgets
r14292 }
Jonathan Frederic
Added boolean widget
r14259 }
Jonathan Frederic
Many checks off the todo list, test fixes
r14583 return CheckboxView.__super__.update.apply(this);
Jonathan Frederic
Added boolean widget
r14259 },
});
Jonathan Frederic
Changed require.js load calls to allow require.js to pass...
r14374 widget_manager.register_widget_view('CheckboxView', CheckboxView);
Jonathan Frederic
Added toggle button view
r14262
Jonathan Frederic
s/BaseWidgetView/WidgetView and s/WidgetView/DOMWidgetView
r14564 var ToggleButtonView = IPython.DOMWidgetView.extend({
Jonathan Frederic
Added toggle button view
r14262
// Called when view is rendered.
render : function(){
Jonathan Frederic
toggle button, set $el to button (removing extra div)
r14571 this.setElement($('<button />')
Jonathan Frederic
Added toggle button view
r14262 .addClass('btn')
.attr('type', 'button')
Jonathan Frederic
toggle button, set $el to button (removing extra div)
r14571 .attr('data-toggle', 'button'));
Jonathan Frederic
Added toggle button view
r14262
this.update(); // Set defaults.
},
Jonathan Frederic
add locks to update everywhere by using options to pass this...
r14570 update : function(options){
Jonathan Frederic
make JS update comment more descriptive (english)
r14568 // Update the contents of this view
//
// Called when the model is changed. The model may have been
// changed by another view or by a state update from the back-end.
Jonathan Frederic
Many checks off the todo list, test fixes
r14583 if (this.model.get('value')) {
this.$el.addClass('active');
} else {
this.$el.removeClass('active');
}
Jonathan Frederic
Added labels to basic widgets
r14292
Jonathan Frederic
Many checks off the todo list, test fixes
r14583 if (options === undefined || options.updated_view != this) {
Jonathan Frederic
Made checkbox and togglebutton compatable with disabled property
r14304 var disabled = this.model.get('disabled');
Jonathan Frederic
toggle button, set $el to button (removing extra div)
r14571 this.$el.prop('disabled', disabled);
Jonathan Frederic
Made checkbox and togglebutton compatable with disabled property
r14304
Jonathan Frederic
Added labels to basic widgets
r14292 var description = this.model.get('description');
Jonathan Frederic
jslint /widgets
r14466 if (description.length === 0) {
Jonathan Frederic
toggle button, set $el to button (removing extra div)
r14571 this.$el.html(' '); // Preserve button height
Jonathan Frederic
Added labels to basic widgets
r14292 } else {
Jonathan Frederic
toggle button, set $el to button (removing extra div)
r14571 this.$el.html(description);
Jonathan Frederic
Added labels to basic widgets
r14292 }
Jonathan Frederic
Added toggle button view
r14262 }
Jonathan Frederic
Many checks off the todo list, test fixes
r14583 return ToggleButtonView.__super__.update.apply(this);
Jonathan Frederic
Added toggle button view
r14262 },
Jonathan Frederic
Many checks off the todo list, test fixes
r14583 events: {"click" : "handleClick"},
Jonathan Frederic
Added toggle button view
r14262
// Handles and validates user input.
handleClick: function(e) {
Jonathan Frederic
add locks to update everywhere by using options to pass this...
r14570
Jonathan Frederic
comment model.set, so we know that it triggers update on other views
r14569 // Calling model.set will trigger all of the other views of the
// model to update.
Jonathan Frederic
Many checks off the todo list, test fixes
r14583 this.model.set('value', ! $(this.$el).hasClass('active'), {updated_view: this});
Jonathan Frederic
Moved touch logic out of model into view....
r14482 this.touch();
Jonathan Frederic
Added toggle button view
r14262 },
});
Jonathan Frederic
Changed require.js load calls to allow require.js to pass...
r14374 widget_manager.register_widget_view('ToggleButtonView', ToggleButtonView);
Jonathan Frederic
Added toggle button view
r14262
Jonathan Frederic
Added boolean widget
r14259 });