Lines Matching refs:checkbox

4434 	$.jstree.defaults.checkbox = {
4474 $.jstree.plugins.checkbox = function (options, parent) {
4477 this._data.checkbox.uto = false;
4478 this._data.checkbox.selected = [];
4479 if(this.settings.checkbox.three_state) {
4480 this.settings.checkbox.cascade = 'up+down+undetermined';
4484 this._data.checkbox.visible = this.settings.checkbox.visible;
4485 if(!this.settings.checkbox.keep_selected_style) {
4488 if(this.settings.checkbox.tie_selection) {
4493 this[ this._data.checkbox.visible ? 'show_checkboxes' : 'hide_checkboxes' ]();
4495 if(this.settings.checkbox.cascade.indexOf('undetermined') !== -1) {
4499 if(this._data.checkbox.uto) { clearTimeout(this._data.checkbox.uto); }
4500 this._data.checkbox.uto = setTimeout($.proxy(this._undetermined, this), 50);
4503 if(!this.settings.checkbox.tie_selection) {
4513 this._data.checkbox.selected.push(dpc[i]);
4518 …if(this.settings.checkbox.cascade.indexOf('up') !== -1 || this.settings.checkbox.cascade.indexOf('…
4525 … c, i, j, k, l, tmp, s = this.settings.checkbox.cascade, t = this.settings.checkbox.tie_selection;
4580 ….on(this.settings.checkbox.tie_selection ? 'select_node.jstree' : 'check_node.jstree', $.proxy(fun…
4585 i, j, c, tmp, s = this.settings.checkbox.cascade, t = this.settings.checkbox.tie_selection;
4626 ….on(this.settings.checkbox.tie_selection ? 'deselect_all.jstree' : 'uncheck_all.jstree', $.proxy(f…
4637 ….on(this.settings.checkbox.tie_selection ? 'deselect_node.jstree' : 'uncheck_node.jstree', $.proxy…
4640 i, j, tmp, s = this.settings.checkbox.cascade, t = this.settings.checkbox.tie_selection;
4688 if(this.settings.checkbox.cascade.indexOf('up') !== -1) {
4694 i, j, c, tmp, t = this.settings.checkbox.tie_selection;
4720 p, c, i, j, tmp, t = this.settings.checkbox.tie_selection;
4783 …var i, j, k, l, o = {}, m = this._model.data, t = this.settings.checkbox.tie_selection, s = this._…
4852 …if(!this.settings.checkbox.tie_selection && this._model.data[obj.id].state.checked) { tmp.classNam…
4856 if(!is_callback && this.settings.checkbox.cascade.indexOf('undetermined') !== -1) {
4857 if(this._data.checkbox.uto) { clearTimeout(this._data.checkbox.uto); }
4858 this._data.checkbox.uto = setTimeout($.proxy(this._undetermined, this), 50);
4888 …var s = this.settings.checkbox.cascade, i, j, t = this.settings.checkbox.tie_selection, d = this._…
4904 …if(this.settings.checkbox.tie_selection && (this.settings.checkbox.whole_node || $(e.target).hasCl…
4907 …if(this.settings.checkbox.tie_selection || (!this.settings.checkbox.whole_node && !$(e.target).has…
4930 if(this.settings.checkbox.tie_selection) { return this.select_node(obj, false, true, e); }
4946 this._data.checkbox.selected.push(obj.id);
4959 …this.trigger('check_node', { 'node' : obj, 'selected' : this._data.checkbox.selected, 'event' : e …
4970 if(this.settings.checkbox.tie_selection) { return this.deselect_node(obj, false, e); }
4986 this._data.checkbox.selected = $.vakata.array_remove_item(this._data.checkbox.selected, obj.id);
4999 …this.trigger('uncheck_node', { 'node' : obj, 'selected' : this._data.checkbox.selected, 'event' : …
5009 if(this.settings.checkbox.tie_selection) { return this.select_all(); }
5010 var tmp = this._data.checkbox.selected.concat([]), i, j;
5011 this._data.checkbox.selected = this._model.data['#'].children_d.concat();
5012 for(i = 0, j = this._data.checkbox.selected.length; i < j; i++) {
5013 if(this._model.data[this._data.checkbox.selected[i]]) {
5014 this._model.data[this._data.checkbox.selected[i]].state.checked = true;
5025 this.trigger('check_all', { 'selected' : this._data.checkbox.selected });
5034 if(this.settings.checkbox.tie_selection) { return this.deselect_all(); }
5035 var tmp = this._data.checkbox.selected.concat([]), i, j;
5036 for(i = 0, j = this._data.checkbox.selected.length; i < j; i++) {
5037 if(this._model.data[this._data.checkbox.selected[i]]) {
5038 this._model.data[this._data.checkbox.selected[i]].state.checked = false;
5041 this._data.checkbox.selected = [];
5051 this.trigger('uncheck_all', { 'selected' : this._data.checkbox.selected, 'node' : tmp });
5061 if(this.settings.checkbox.tie_selection) { return this.is_selected(obj); }
5074 if(this.settings.checkbox.tie_selection) { return this.get_selected(full); }
5075 …rn full ? $.map(this._data.checkbox.selected, $.proxy(function (i) { return this.get_node(i); }, t…
5085 if(this.settings.checkbox.tie_selection) { return this.get_top_selected(full); }
5114 if(this.settings.checkbox.tie_selection) { return this.get_bottom_selected(full); }
5126 if(!$.isArray(obj) && !this.settings.checkbox.tie_selection) {
5132 …this._data.checkbox.selected = $.vakata.array_remove_item(this._data.checkbox.selected, tmp.childr…
5141 if(this.settings.checkbox.tie_selection) { return state; }
5142 state.checkbox = this._data.checkbox.selected.slice();
5147 if(res && state.checkbox) {
5148 if(!this.settings.checkbox.tie_selection) {
5151 $.each(state.checkbox, function (i, v) {
5155 delete state.checkbox;