// Copyright (c) IPython Development Team. // Distributed under the terms of the Modified BSD License. define([ "widgets/js/widget", "jquery", "bootstrap", ], function(widget, $){ var CheckboxView = widget.DOMWidgetView.extend({ render : function(){ /** * Called when view is rendered. */ this.$el .addClass('widget-hbox widget-checkbox'); this.$label = $('
') .addClass('widget-label') .appendTo(this.$el) .hide(); this.$checkbox = $('') .attr('type', 'checkbox') .appendTo(this.$el) .click($.proxy(this.handle_click, this)); this.update(); // Set defaults. }, update_attr: function(name, value) { /** * Set a css attr of the widget view. */ if (name == 'padding' || name == 'margin') { this.$el.css(name, value); } else { this.$checkbox.css(name, value); } }, handle_click: function() { /** * Handles when the checkbox is clicked. * * Calling model.set will trigger all of the other views of the * model to update. */ var value = this.model.get('value'); this.model.set('value', ! value, {updated_view: this}); this.touch(); }, update : function(options){ /** * 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. */ this.$checkbox.prop('checked', this.model.get('value')); if (options === undefined || options.updated_view != this) { this.$checkbox.prop("disabled", this.model.get("disabled")); var description = this.model.get("description"); if (description.trim().length === 0) { this.$label.hide(); } else { this.typeset(this.$label, description); this.$label.show(); } } return CheckboxView.__super__.update.apply(this); }, }); var ToggleButtonView = widget.DOMWidgetView.extend({ render : function() { /** * Called when view is rendered. */ var that = this; this.setElement($('