##// END OF EJS Templates
Fix: added inspect import to widget.py
Fix: added inspect import to widget.py

File last commit:

r14314:97be073b
r14341:c0c9ab2c
Show More
selection.js
251 lines | 9.4 KiB | application/javascript | JavascriptLexer
Jonathan Frederic
Updated require js references, now absolute paths are used
r14285 require(["notebook/js/widget"], function(){
Jonathan Frederic
Lots of updates to widget(s) js...
r14263 var SelectionWidgetModel = IPython.WidgetModel.extend({});
IPython.notebook.widget_manager.register_widget_model('SelectionWidgetModel', SelectionWidgetModel);
Jonathan Frederic
Moved view code into model files
r14252
Jonathan Frederic
Lots of updates to widget(s) js...
r14263 var DropdownView = IPython.WidgetView.extend({
Jonathan Frederic
Moved view code into model files
r14252
Jonathan Frederic
Lots of updates to widget(s) js...
r14263 // Called when view is rendered.
render : function(){
Jonathan Frederic
Use require.js to load widget manager.
r14253
Jonathan Frederic
Lots of updates to widget(s) js...
r14263 this.$el
Jonathan Frederic
MAJOR CSS FIXES...
r14295 .addClass('widget-hbox-single')
Jonathan Frederic
LOTS OF WIDGET CHANGES...
r14278 .html('');
Jonathan Frederic
Added labels to basic widgets
r14292 this.$label = $('<div />')
.appendTo(this.$el)
Jonathan Frederic
Fixed vertical widget labels
r14297 .addClass('widget-hlabel')
Jonathan Frederic
Added labels to basic widgets
r14292 .hide();
Jonathan Frederic
Lots of updates to widget(s) js...
r14263 this.$buttongroup = $('<div />')
Jonathan Frederic
Attempt 1, HBox and VBox implementation.
r14268 .addClass('widget_item')
Jonathan Frederic
Lots of updates to widget(s) js...
r14263 .addClass('btn-group')
.appendTo(this.$el);
Jonathan Frederic
Set default element to be styled in built-in views
r14314 this.$el_to_style = this.$buttongroup; // Set default element to style
Jonathan Frederic
Lots of updates to widget(s) js...
r14263 this.$droplabel = $('<button />')
.addClass('btn')
Jonathan Frederic
MAJOR CSS FIXES...
r14295 .addClass('widget-combo-btn')
Jonathan Frederic
Lots of updates to widget(s) js...
r14263 .appendTo(this.$buttongroup);
this.$dropbutton = $('<button />')
.addClass('btn')
.addClass('dropdown-toggle')
.attr('data-toggle', 'dropdown')
.html('<span class="caret"></span>')
.appendTo(this.$buttongroup);
this.$droplist = $('<ul />')
.addClass('dropdown-menu')
.appendTo(this.$buttongroup);
// Set defaults.
this.update();
},
Jonathan Frederic
Removed require.js scheme since it forces async event driven model,...
r14257
Jonathan Frederic
Lots of updates to widget(s) js...
r14263 // Handles: Backend -> Frontend Sync
// Frontent -> Frontend Sync
update : function(){
this.$droplabel.html(this.model.get('value'));
var items = this.model.get('values');
this.$droplist.html('');
for (var index in items) {
Jonathan Frederic
Removed require.js scheme since it forces async event driven model,...
r14257 var that = this;
Jonathan Frederic
Lots of updates to widget(s) js...
r14263 var item_button = $('<a href="#"/>')
.html(items[index])
Jonathan Frederic
Removed require.js scheme since it forces async event driven model,...
r14257 .on('click', function(e){
Jonathan Frederic
Added labels to basic widgets
r14292 that.model.set('value', $(e.target).html(), this);
Jonathan Frederic
LOTS OF WIDGET CHANGES...
r14278 that.model.update_other_views(that);
Jonathan Frederic
Lots of updates to widget(s) js...
r14263 })
this.$droplist.append($('<li />').append(item_button))
Jonathan Frederic
Moved view code into model files
r14252 }
Jonathan Frederic
Lots of updates to widget(s) js...
r14263 if (this.model.get('disabled')) {
this.$buttongroup.attr('disabled','disabled');
this.$droplabel.attr('disabled','disabled');
this.$dropbutton.attr('disabled','disabled');
this.$droplist.attr('disabled','disabled');
Jonathan Frederic
Moved view code into model files
r14252 } else {
Jonathan Frederic
Lots of updates to widget(s) js...
r14263 this.$buttongroup.removeAttr('disabled');
this.$droplabel.removeAttr('disabled');
this.$dropbutton.removeAttr('disabled');
this.$droplist.removeAttr('disabled');
Jonathan Frederic
Moved view code into model files
r14252 }
Jonathan Frederic
Added labels to basic widgets
r14292
var description = this.model.get('description');
if (description.length == 0) {
this.$label.hide();
} else {
this.$label.html(description);
this.$label.show();
}
Jonathan Frederic
Fixes that allow last commit to work.
r14279 return IPython.WidgetView.prototype.update.call(this);
Jonathan Frederic
Lots of updates to widget(s) js...
r14263 },
});
IPython.notebook.widget_manager.register_widget_view('DropdownView', DropdownView);
var RadioButtonsView = IPython.WidgetView.extend({
// Called when view is rendered.
render : function(){
this.$el
Jonathan Frederic
MAJOR CSS FIXES...
r14295 .addClass('widget-hbox')
Jonathan Frederic
LOTS OF WIDGET CHANGES...
r14278 .html('');
Jonathan Frederic
Added labels to basic widgets
r14292 this.$label = $('<div />')
.appendTo(this.$el)
Jonathan Frederic
Fixed vertical widget labels
r14297 .addClass('widget-hlabel')
Jonathan Frederic
Added labels to basic widgets
r14292 .hide();
Jonathan Frederic
MAJOR CSS FIXES...
r14295 this.$container = $('<div />')
.appendTo(this.$el)
.addClass('widget-container')
.addClass('vbox');
Jonathan Frederic
Set default element to be styled in built-in views
r14314 this.$el_to_style = this.$container; // Set default element to style
Jonathan Frederic
Lots of updates to widget(s) js...
r14263 this.update();
},
Jonathan Frederic
Moved view code into model files
r14252
Jonathan Frederic
Lots of updates to widget(s) js...
r14263 // Handles: Backend -> Frontend Sync
// Frontent -> Frontend Sync
update : function(){
// Add missing items to the DOM.
var items = this.model.get('values');
Jonathan Frederic
Made RadioButtons and ToggleButtons views compatible with disabled property
r14305 var disabled = this.model.get('disabled');
Jonathan Frederic
Moved view code into model files
r14252 for (var index in items) {
Jonathan Frederic
Lots of updates to widget(s) js...
r14263 var item_query = ' :input[value="' + items[index] + '"]';
if (this.$el.find(item_query).length == 0) {
var $label = $('<label />')
.addClass('radio')
.html(items[index])
Jonathan Frederic
MAJOR CSS FIXES...
r14295 .appendTo(this.$container);
Jonathan Frederic
Lots of updates to widget(s) js...
r14263
var that = this;
$('<input />')
.attr('type', 'radio')
.addClass(this.model)
.val(items[index])
.prependTo($label)
.on('click', function(e){
that.model.set('value', $(e.target).val(), this);
Jonathan Frederic
Fixes that allow last commit to work.
r14279 that.model.update_other_views(that);
Jonathan Frederic
Lots of updates to widget(s) js...
r14263 });
}
Jonathan Frederic
Made RadioButtons and ToggleButtons views compatible with disabled property
r14305 var $item_element = this.$container.find(item_query);
Jonathan Frederic
Lots of updates to widget(s) js...
r14263 if (this.model.get('value') == items[index]) {
Jonathan Frederic
Made RadioButtons and ToggleButtons views compatible with disabled property
r14305 $item_element.prop('checked', true);
Jonathan Frederic
Lots of updates to widget(s) js...
r14263 } else {
Jonathan Frederic
Made RadioButtons and ToggleButtons views compatible with disabled property
r14305 $item_element.prop('checked', false);
Jonathan Frederic
Moved view code into model files
r14252 }
Jonathan Frederic
Made RadioButtons and ToggleButtons views compatible with disabled property
r14305 $item_element.prop('disabled', disabled);
Jonathan Frederic
Moved view code into model files
r14252 }
Jonathan Frederic
Lots of updates to widget(s) js...
r14263 // Remove items that no longer exist.
Jonathan Frederic
MAJOR CSS FIXES...
r14295 this.$container.find('input').each(function(i, obj) {
Jonathan Frederic
Lots of updates to widget(s) js...
r14263 var value = $(obj).val();
var found = false;
for (var index in items) {
if (items[index] == value) {
found = true;
break;
}
}
if (!found) {
$(obj).parent().remove();
}
});
Jonathan Frederic
Added labels to basic widgets
r14292
var description = this.model.get('description');
if (description.length == 0) {
this.$label.hide();
} else {
this.$label.html(description);
this.$label.show();
}
Jonathan Frederic
Fixes that allow last commit to work.
r14279 return IPython.WidgetView.prototype.update.call(this);
Jonathan Frederic
Lots of updates to widget(s) js...
r14263 },
});
Jonathan Frederic
Moved view code into model files
r14252
Jonathan Frederic
Lots of updates to widget(s) js...
r14263 IPython.notebook.widget_manager.register_widget_view('RadioButtonsView', RadioButtonsView);
Jonathan Frederic
Added togglebutton group
r14258
Jonathan Frederic
Lots of updates to widget(s) js...
r14263 var ToggleButtonsView = IPython.WidgetView.extend({
Jonathan Frederic
Added togglebutton group
r14258
Jonathan Frederic
Lots of updates to widget(s) js...
r14263 // Called when view is rendered.
render : function(){
this.$el
Jonathan Frederic
MAJOR CSS FIXES...
r14295 .addClass('widget-hbox-single')
Jonathan Frederic
LOTS OF WIDGET CHANGES...
r14278 .html('');
Jonathan Frederic
Added labels to basic widgets
r14292 this.$label = $('<div />')
.appendTo(this.$el)
Jonathan Frederic
Fixed vertical widget labels
r14297 .addClass('widget-hlabel')
Jonathan Frederic
Added labels to basic widgets
r14292 .hide();
Jonathan Frederic
Lots of updates to widget(s) js...
r14263 this.$buttongroup = $('<div />')
.addClass('btn-group')
.attr('data-toggle', 'buttons-radio')
.appendTo(this.$el);
Jonathan Frederic
Set default element to be styled in built-in views
r14314 this.$el_to_style = this.$buttongroup; // Set default element to style
Jonathan Frederic
Lots of updates to widget(s) js...
r14263 this.update();
},
Jonathan Frederic
Added togglebutton group
r14258
Jonathan Frederic
Lots of updates to widget(s) js...
r14263 // Handles: Backend -> Frontend Sync
// Frontent -> Frontend Sync
update : function(){
// Add missing items to the DOM.
var items = this.model.get('values');
Jonathan Frederic
Made RadioButtons and ToggleButtons views compatible with disabled property
r14305 var disabled = this.model.get('disabled');
Jonathan Frederic
Added togglebutton group
r14258 for (var index in items) {
Jonathan Frederic
Lots of updates to widget(s) js...
r14263 var item_query = ' :contains("' + items[index] + '")';
if (this.$buttongroup.find(item_query).length == 0) {
var that = this;
$('<button />')
.attr('type', 'button')
.addClass('btn')
.html(items[index])
.appendTo(this.$buttongroup)
.on('click', function(e){
that.model.set('value', $(e.target).html(), this);
Jonathan Frederic
Fixes that allow last commit to work.
r14279 that.model.update_other_views(that);
Jonathan Frederic
Lots of updates to widget(s) js...
r14263 });
}
Jonathan Frederic
Made RadioButtons and ToggleButtons views compatible with disabled property
r14305 var $item_element = this.$buttongroup.find(item_query);
Jonathan Frederic
Lots of updates to widget(s) js...
r14263 if (this.model.get('value') == items[index]) {
Jonathan Frederic
Made RadioButtons and ToggleButtons views compatible with disabled property
r14305 $item_element.addClass('active');
Jonathan Frederic
Lots of updates to widget(s) js...
r14263 } else {
Jonathan Frederic
Made RadioButtons and ToggleButtons views compatible with disabled property
r14305 $item_element.removeClass('active');
Jonathan Frederic
Added togglebutton group
r14258 }
Jonathan Frederic
Made RadioButtons and ToggleButtons views compatible with disabled property
r14305 $item_element.prop('disabled', disabled);
Jonathan Frederic
Added togglebutton group
r14258 }
Jonathan Frederic
Lots of updates to widget(s) js...
r14263 // Remove items that no longer exist.
this.$buttongroup.find('button').each(function(i, obj) {
var value = $(obj).html();
var found = false;
for (var index in items) {
if (items[index] == value) {
found = true;
break;
}
}
if (!found) {
$(obj).remove();
}
});
Jonathan Frederic
Added labels to basic widgets
r14292
var description = this.model.get('description');
if (description.length == 0) {
this.$label.hide();
} else {
this.$label.html(description);
this.$label.show();
}
Jonathan Frederic
Fixes that allow last commit to work.
r14279 return IPython.WidgetView.prototype.update.call(this);
Jonathan Frederic
Lots of updates to widget(s) js...
r14263 },
});
Jonathan Frederic
Added togglebutton group
r14258
Jonathan Frederic
Lots of updates to widget(s) js...
r14263 IPython.notebook.widget_manager.register_widget_view('ToggleButtonsView', ToggleButtonsView);
});