From 1c5685d68f1b73270fb814fe04cbb490eb90ba5f Mon Sep 17 00:00:00 2001 From: mensonge Date: Fri, 14 Nov 2008 15:39:19 +0000 Subject: Minor fix: Remove DOJO library (60Mo) replaced by link to Google CDN (online DOJO library) git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@159 b3834d28-1941-0410-a4f8-b48e95affb8f --- includes/js/dojox/form/CheckedMultiSelect.js | 223 --------------------------- 1 file changed, 223 deletions(-) delete mode 100644 includes/js/dojox/form/CheckedMultiSelect.js (limited to 'includes/js/dojox/form/CheckedMultiSelect.js') diff --git a/includes/js/dojox/form/CheckedMultiSelect.js b/includes/js/dojox/form/CheckedMultiSelect.js deleted file mode 100644 index eb80c72..0000000 --- a/includes/js/dojox/form/CheckedMultiSelect.js +++ /dev/null @@ -1,223 +0,0 @@ -if(!dojo._hasResource["dojox.form.CheckedMultiSelect"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code. -dojo._hasResource["dojox.form.CheckedMultiSelect"] = true; -dojo.provide("dojox.form.CheckedMultiSelect"); - -dojo.require("dijit.form.MultiSelect"); -dojo.require("dijit.form.CheckBox"); - -dojo.declare("dojox.form._CheckedMultiSelectItem", - [dijit._Widget, dijit._Templated], - { - // summary: - // The individual items for a CheckedMultiSelect - - widgetsInTemplate: true, - templateString:"
${option.innerHTML}
\n", - - baseClass: "dojoxMultiSelectItem", - - // option: Element - // The option that is associated with this item - option: null, - parent: null, - - // disabled: boolean - // Whether or not this widget is disabled - disabled: false, - - _changeBox: function(){ - // summary: - // Called to force the select to match the state of the check box - // (only on click of the checkbox) - this.option.selected = this.checkBox.getValue() && true; - - // fire the parent's change - this.parent._onChange(); - - // refocus the parent - this.parent.focus(); - }, - - _labelClick: function(){ - // summary: - // Called when the label portion is clicked - dojo.stopEvent(e); - if(this.disabled){ - return; - } - var cb = this.checkBox; - cb.setValue(!cb.getValue()); - this._changeBox(); - }, - - _onMouse: function(e){ - // summary: - // Sets the hover state depending on mouse state (passes through - // to the check box) - this.checkBox._onMouse(e); - }, - - _onClick: function(e){ - // summary: - // Sets the click state (passes through to the check box) - this.checkBox._onClick(e); - }, - - _updateBox: function(){ - // summary: - // Called to force the box to match the state of the select - this.checkBox.setValue(this.option.selected); - }, - - setAttribute: function(attr, value){ - // summary: - // Disables (or enables) all the children as well - this.inherited(arguments); - switch(attr){ - case "disabled": - this.checkBox.setAttribute(attr, value); - break; - default: - break; - } - } -}); - -dojo.declare("dojox.form.CheckedMultiSelect", dijit.form.MultiSelect, { - // summary: - // Extends the core dijit MultiSelect to provide a "checkbox" selector - - templateString: "", - templateString:"