MultiSelect.js
上传用户:shuoshiled
上传日期:2018-01-28
资源大小:10124k
文件大小:20k
源码类别:

中间件编程

开发平台:

JavaScript

  1. /*!  * Ext JS Library 3.0.0  * Copyright(c) 2006-2009 Ext JS, LLC  * licensing@extjs.com  * http://www.extjs.com/license  */ Ext.ns('Ext.ux.form');
  2. /**
  3.  * @class Ext.ux.form.MultiSelect
  4.  * @extends Ext.form.Field
  5.  * A control that allows selection and form submission of multiple list items.
  6.  *
  7.  *  @history
  8.  *    2008-06-19 bpm Original code contributed by Toby Stuart (with contributions from Robert Williams)
  9.  *    2008-06-19 bpm Docs and demo code clean up
  10.  *
  11.  * @constructor
  12.  * Create a new MultiSelect
  13.  * @param {Object} config Configuration options
  14.  * @xtype multiselect 
  15.  */
  16. Ext.ux.form.MultiSelect = Ext.extend(Ext.form.Field,  {
  17.     /**
  18.      * @cfg {String} legend Wraps the object with a fieldset and specified legend.
  19.      */
  20.     /**
  21.      * @cfg {Ext.ListView} view The {@link Ext.ListView} used to render the multiselect list.
  22.      */
  23.     /**
  24.      * @cfg {String/Array} dragGroup The ddgroup name(s) for the MultiSelect DragZone (defaults to undefined).
  25.      */
  26.     /**
  27.      * @cfg {String/Array} dropGroup The ddgroup name(s) for the MultiSelect DropZone (defaults to undefined).
  28.      */
  29.     /**
  30.      * @cfg {Boolean} ddReorder Whether the items in the MultiSelect list are drag/drop reorderable (defaults to false).
  31.      */
  32.     ddReorder:false,
  33.     /**
  34.      * @cfg {Object/Array} tbar The top toolbar of the control. This can be a {@link Ext.Toolbar} object, a
  35.      * toolbar config, or an array of buttons/button configs to be added to the toolbar.
  36.      */
  37.     /**
  38.      * @cfg {String} appendOnly True if the list should only allow append drops when drag/drop is enabled
  39.      * (use for lists which are sorted, defaults to false).
  40.      */
  41.     appendOnly:false,
  42.     /**
  43.      * @cfg {Number} width Width in pixels of the control (defaults to 100).
  44.      */
  45.     width:100,
  46.     /**
  47.      * @cfg {Number} height Height in pixels of the control (defaults to 100).
  48.      */
  49.     height:100,
  50.     /**
  51.      * @cfg {String/Number} displayField Name/Index of the desired display field in the dataset (defaults to 0).
  52.      */
  53.     displayField:0,
  54.     /**
  55.      * @cfg {String/Number} valueField Name/Index of the desired value field in the dataset (defaults to 1).
  56.      */
  57.     valueField:1,
  58.     /**
  59.      * @cfg {Boolean} allowBlank False to require at least one item in the list to be selected, true to allow no
  60.      * selection (defaults to true).
  61.      */
  62.     allowBlank:true,
  63.     /**
  64.      * @cfg {Number} minSelections Minimum number of selections allowed (defaults to 0).
  65.      */
  66.     minSelections:0,
  67.     /**
  68.      * @cfg {Number} maxSelections Maximum number of selections allowed (defaults to Number.MAX_VALUE).
  69.      */
  70.     maxSelections:Number.MAX_VALUE,
  71.     /**
  72.      * @cfg {String} blankText Default text displayed when the control contains no items (defaults to the same value as
  73.      * {@link Ext.form.TextField#blankText}.
  74.      */
  75.     blankText:Ext.form.TextField.prototype.blankText,
  76.     /**
  77.      * @cfg {String} minSelectionsText Validation message displayed when {@link #minSelections} is not met (defaults to 'Minimum {0}
  78.      * item(s) required').  The {0} token will be replaced by the value of {@link #minSelections}.
  79.      */
  80.     minSelectionsText:'Minimum {0} item(s) required',
  81.     /**
  82.      * @cfg {String} maxSelectionsText Validation message displayed when {@link #maxSelections} is not met (defaults to 'Maximum {0}
  83.      * item(s) allowed').  The {0} token will be replaced by the value of {@link #maxSelections}.
  84.      */
  85.     maxSelectionsText:'Maximum {0} item(s) allowed',
  86.     /**
  87.      * @cfg {String} delimiter The string used to delimit between items when set or returned as a string of values
  88.      * (defaults to ',').
  89.      */
  90.     delimiter:',',
  91.     /**
  92.      * @cfg {Ext.data.Store/Array} store The data source to which this MultiSelect is bound (defaults to <tt>undefined</tt>).
  93.      * Acceptable values for this property are:
  94.      * <div class="mdetail-params"><ul>
  95.      * <li><b>any {@link Ext.data.Store Store} subclass</b></li>
  96.      * <li><b>an Array</b> : Arrays will be converted to a {@link Ext.data.ArrayStore} internally.
  97.      * <div class="mdetail-params"><ul>
  98.      * <li><b>1-dimensional array</b> : (e.g., <tt>['Foo','Bar']</tt>)<div class="sub-desc">
  99.      * A 1-dimensional array will automatically be expanded (each array item will be the combo
  100.      * {@link #valueField value} and {@link #displayField text})</div></li>
  101.      * <li><b>2-dimensional array</b> : (e.g., <tt>[['f','Foo'],['b','Bar']]</tt>)<div class="sub-desc">
  102.      * For a multi-dimensional array, the value in index 0 of each item will be assumed to be the combo
  103.      * {@link #valueField value}, while the value at index 1 is assumed to be the combo {@link #displayField text}.
  104.      * </div></li></ul></div></li></ul></div>
  105.      */
  106.     // private
  107.     defaultAutoCreate : {tag: "div"},
  108.     // private
  109.     initComponent: function(){
  110.         Ext.ux.form.MultiSelect.superclass.initComponent.call(this);
  111.         if(Ext.isArray(this.store)){
  112.             if (Ext.isArray(this.store[0])){
  113.                 this.store = new Ext.data.ArrayStore({
  114.                     fields: ['value','text'],
  115.                     data: this.store
  116.                 });
  117.                 this.valueField = 'value';
  118.             }else{
  119.                 this.store = new Ext.data.ArrayStore({
  120.                     fields: ['text'],
  121.                     data: this.store,
  122.                     expandData: true
  123.                 });
  124.                 this.valueField = 'text';
  125.             }
  126.             this.displayField = 'text';
  127.         } else {
  128.             this.store = Ext.StoreMgr.lookup(this.store);
  129.         }
  130.         this.addEvents({
  131.             'dblclick' : true,
  132.             'click' : true,
  133.             'change' : true,
  134.             'drop' : true
  135.         });
  136.     },
  137.     // private
  138.     onRender: function(ct, position){
  139.         Ext.ux.form.MultiSelect.superclass.onRender.call(this, ct, position);
  140.         var fs = this.fs = new Ext.form.FieldSet({
  141.             renderTo: this.el,
  142.             title: this.legend,
  143.             height: this.height,
  144.             width: this.width,
  145.             style: "padding:0;",
  146.             tbar: this.tbar,
  147.             bodyStyle: 'overflow: auto;'
  148.         });
  149.         this.view = new Ext.ListView({
  150.             multiSelect: true,
  151.             store: this.store,
  152.             columns: [{ header: 'Value', width: 1, dataIndex: this.displayField }],
  153.             hideHeaders: true
  154.         });
  155.         fs.add(this.view);
  156.         this.view.on('click', this.onViewClick, this);
  157.         this.view.on('beforeclick', this.onViewBeforeClick, this);
  158.         this.view.on('dblclick', this.onViewDblClick, this);
  159.         this.hiddenName = this.name || Ext.id();
  160.         var hiddenTag = { tag: "input", type: "hidden", value: "", name: this.hiddenName };
  161.         this.hiddenField = this.el.createChild(hiddenTag);
  162.         this.hiddenField.dom.disabled = this.hiddenName != this.name;
  163.         fs.doLayout();
  164.     },
  165.     // private
  166.     afterRender: function(){
  167.         Ext.ux.form.MultiSelect.superclass.afterRender.call(this);
  168.         if (this.ddReorder && !this.dragGroup && !this.dropGroup){
  169.             this.dragGroup = this.dropGroup = 'MultiselectDD-' + Ext.id();
  170.         }
  171.         if (this.draggable || this.dragGroup){
  172.             this.dragZone = new Ext.ux.form.MultiSelect.DragZone(this, {
  173.                 ddGroup: this.dragGroup
  174.             });
  175.         }
  176.         if (this.droppable || this.dropGroup){
  177.             this.dropZone = new Ext.ux.form.MultiSelect.DropZone(this, {
  178.                 ddGroup: this.dropGroup
  179.             });
  180.         }
  181.     },
  182.     // private
  183.     onViewClick: function(vw, index, node, e) {
  184.         this.fireEvent('change', this, this.getValue(), this.hiddenField.dom.value);
  185.         this.hiddenField.dom.value = this.getValue();
  186.         this.fireEvent('click', this, e);
  187.         this.validate();
  188.     },
  189.     // private
  190.     onViewBeforeClick: function(vw, index, node, e) {
  191.         if (this.disabled) {return false;}
  192.     },
  193.     // private
  194.     onViewDblClick : function(vw, index, node, e) {
  195.         return this.fireEvent('dblclick', vw, index, node, e);
  196.     },
  197.     /**
  198.      * Returns an array of data values for the selected items in the list. The values will be separated
  199.      * by {@link #delimiter}.
  200.      * @return {Array} value An array of string data values
  201.      */
  202.     getValue: function(valueField){
  203.         var returnArray = [];
  204.         var selectionsArray = this.view.getSelectedIndexes();
  205.         if (selectionsArray.length == 0) {return '';}
  206.         for (var i=0; i<selectionsArray.length; i++) {
  207.             returnArray.push(this.store.getAt(selectionsArray[i]).get((valueField != null) ? valueField : this.valueField));
  208.         }
  209.         return returnArray.join(this.delimiter);
  210.     },
  211.     /**
  212.      * Sets a delimited string (using {@link #delimiter}) or array of data values into the list.
  213.      * @param {String/Array} values The values to set
  214.      */
  215.     setValue: function(values) {
  216.         var index;
  217.         var selections = [];
  218.         this.view.clearSelections();
  219.         this.hiddenField.dom.value = '';
  220.         if (!values || (values == '')) { return; }
  221.         if (!Ext.isArray(values)) { values = values.split(this.delimiter); }
  222.         for (var i=0; i<values.length; i++) {
  223.             index = this.view.store.indexOf(this.view.store.query(this.valueField,
  224.                 new RegExp('^' + values[i] + '$', "i")).itemAt(0));
  225.             selections.push(index);
  226.         }
  227.         this.view.select(selections);
  228.         this.hiddenField.dom.value = this.getValue();
  229.         this.validate();
  230.     },
  231.     // inherit docs
  232.     reset : function() {
  233.         this.setValue('');
  234.     },
  235.     // inherit docs
  236.     getRawValue: function(valueField) {
  237.         var tmp = this.getValue(valueField);
  238.         if (tmp.length) {
  239.             tmp = tmp.split(this.delimiter);
  240.         }
  241.         else {
  242.             tmp = [];
  243.         }
  244.         return tmp;
  245.     },
  246.     // inherit docs
  247.     setRawValue: function(values){
  248.         setValue(values);
  249.     },
  250.     // inherit docs
  251.     validateValue : function(value){
  252.         if (value.length < 1) { // if it has no value
  253.              if (this.allowBlank) {
  254.                  this.clearInvalid();
  255.                  return true;
  256.              } else {
  257.                  this.markInvalid(this.blankText);
  258.                  return false;
  259.              }
  260.         }
  261.         if (value.length < this.minSelections) {
  262.             this.markInvalid(String.format(this.minSelectionsText, this.minSelections));
  263.             return false;
  264.         }
  265.         if (value.length > this.maxSelections) {
  266.             this.markInvalid(String.format(this.maxSelectionsText, this.maxSelections));
  267.             return false;
  268.         }
  269.         return true;
  270.     },
  271.     // inherit docs
  272.     disable: function(){
  273.         this.disabled = true;
  274.         this.hiddenField.dom.disabled = true;
  275.         this.fs.disable();
  276.     },
  277.     // inherit docs
  278.     enable: function(){
  279.         this.disabled = false;
  280.         this.hiddenField.dom.disabled = false;
  281.         this.fs.enable();
  282.     },
  283.     // inherit docs
  284.     destroy: function(){
  285.         Ext.destroy(this.fs, this.dragZone, this.dropZone);
  286.         Ext.ux.form.MultiSelect.superclass.destroy.call(this);
  287.     }
  288. });
  289. Ext.reg('multiselect', Ext.ux.form.MultiSelect);
  290. //backwards compat
  291. Ext.ux.Multiselect = Ext.ux.form.MultiSelect;
  292. Ext.ux.form.MultiSelect.DragZone = function(ms, config){
  293.     this.ms = ms;
  294.     this.view = ms.view;
  295.     var ddGroup = config.ddGroup || 'MultiselectDD';
  296.     var dd;
  297.     if (Ext.isArray(ddGroup)){
  298.         dd = ddGroup.shift();
  299.     } else {
  300.         dd = ddGroup;
  301.         ddGroup = null;
  302.     }
  303.     Ext.ux.form.MultiSelect.DragZone.superclass.constructor.call(this, this.ms.fs.body, { containerScroll: true, ddGroup: dd });
  304.     this.setDraggable(ddGroup);
  305. };
  306. Ext.extend(Ext.ux.form.MultiSelect.DragZone, Ext.dd.DragZone, {
  307.     onInitDrag : function(x, y){
  308.         var el = Ext.get(this.dragData.ddel.cloneNode(true));
  309.         this.proxy.update(el.dom);
  310.         el.setWidth(el.child('em').getWidth());
  311.         this.onStartDrag(x, y);
  312.         return true;
  313.     },
  314.     
  315.     // private
  316.     collectSelection: function(data) {
  317.         data.repairXY = Ext.fly(this.view.getSelectedNodes()[0]).getXY();
  318.         var i = 0;
  319.         this.view.store.each(function(rec){
  320.             if (this.view.isSelected(i)) {
  321.                 var n = this.view.getNode(i);
  322.                 var dragNode = n.cloneNode(true);
  323.                 dragNode.id = Ext.id();
  324.                 data.ddel.appendChild(dragNode);
  325.                 data.records.push(this.view.store.getAt(i));
  326.                 data.viewNodes.push(n);
  327.             }
  328.             i++;
  329.         }, this);
  330.     },
  331.     // override
  332.     onEndDrag: function(data, e) {
  333.         var d = Ext.get(this.dragData.ddel);
  334.         if (d && d.hasClass("multi-proxy")) {
  335.             d.remove();
  336.         }
  337.     },
  338.     // override
  339.     getDragData: function(e){
  340.         var target = this.view.findItemFromChild(e.getTarget());
  341.         if(target) {
  342.             if (!this.view.isSelected(target) && !e.ctrlKey && !e.shiftKey) {
  343.                 this.view.select(target);
  344.                 this.ms.setValue(this.ms.getValue());
  345.             }
  346.             if (this.view.getSelectionCount() == 0 || e.ctrlKey || e.shiftKey) return false;
  347.             var dragData = {
  348.                 sourceView: this.view,
  349.                 viewNodes: [],
  350.                 records: []
  351.             };
  352.             if (this.view.getSelectionCount() == 1) {
  353.                 var i = this.view.getSelectedIndexes()[0];
  354.                 var n = this.view.getNode(i);
  355.                 dragData.viewNodes.push(dragData.ddel = n);
  356.                 dragData.records.push(this.view.store.getAt(i));
  357.                 dragData.repairXY = Ext.fly(n).getXY();
  358.             } else {
  359.                 dragData.ddel = document.createElement('div');
  360.                 dragData.ddel.className = 'multi-proxy';
  361.                 this.collectSelection(dragData);
  362.             }
  363.             return dragData;
  364.         }
  365.         return false;
  366.     },
  367.     // override the default repairXY.
  368.     getRepairXY : function(e){
  369.         return this.dragData.repairXY;
  370.     },
  371.     // private
  372.     setDraggable: function(ddGroup){
  373.         if (!ddGroup) return;
  374.         if (Ext.isArray(ddGroup)) {
  375.             Ext.each(ddGroup, this.setDraggable, this);
  376.             return;
  377.         }
  378.         this.addToGroup(ddGroup);
  379.     }
  380. });
  381. Ext.ux.form.MultiSelect.DropZone = function(ms, config){
  382.     this.ms = ms;
  383.     this.view = ms.view;
  384.     var ddGroup = config.ddGroup || 'MultiselectDD';
  385.     var dd;
  386.     if (Ext.isArray(ddGroup)){
  387.         dd = ddGroup.shift();
  388.     } else {
  389.         dd = ddGroup;
  390.         ddGroup = null;
  391.     }
  392.     Ext.ux.form.MultiSelect.DropZone.superclass.constructor.call(this, this.ms.fs.body, { containerScroll: true, ddGroup: dd });
  393.     this.setDroppable(ddGroup);
  394. };
  395. Ext.extend(Ext.ux.form.MultiSelect.DropZone, Ext.dd.DropZone, {
  396.     /**
  397.  * Part of the Ext.dd.DropZone interface. If no target node is found, the
  398.  * whole Element becomes the target, and this causes the drop gesture to append.
  399.  */
  400.     getTargetFromEvent : function(e) {
  401.         var target = e.getTarget();
  402.         return target;
  403.     },
  404.     // private
  405.     getDropPoint : function(e, n, dd){
  406.         if (n == this.ms.fs.body.dom) { return "below"; }
  407.         var t = Ext.lib.Dom.getY(n), b = t + n.offsetHeight;
  408.         var c = t + (b - t) / 2;
  409.         var y = Ext.lib.Event.getPageY(e);
  410.         if(y <= c) {
  411.             return "above";
  412.         }else{
  413.             return "below";
  414.         }
  415.     },
  416.     // private
  417.     isValidDropPoint: function(pt, n, data) {
  418.         if (!data.viewNodes || (data.viewNodes.length != 1)) {
  419.             return true;
  420.         }
  421.         var d = data.viewNodes[0];
  422.         if (d == n) {
  423.             return false;
  424.         }
  425.         if ((pt == "below") && (n.nextSibling == d)) {
  426.             return false;
  427.         }
  428.         if ((pt == "above") && (n.previousSibling == d)) {
  429.             return false;
  430.         }
  431.         return true;
  432.     },
  433.     // override
  434.     onNodeEnter : function(n, dd, e, data){
  435.         return false;
  436.     },
  437.     // override
  438.     onNodeOver : function(n, dd, e, data){
  439.         var dragElClass = this.dropNotAllowed;
  440.         var pt = this.getDropPoint(e, n, dd);
  441.         if (this.isValidDropPoint(pt, n, data)) {
  442.             if (this.ms.appendOnly) {
  443.                 return "x-tree-drop-ok-below";
  444.             }
  445.             // set the insert point style on the target node
  446.             if (pt) {
  447.                 var targetElClass;
  448.                 if (pt == "above"){
  449.                     dragElClass = n.previousSibling ? "x-tree-drop-ok-between" : "x-tree-drop-ok-above";
  450.                     targetElClass = "x-view-drag-insert-above";
  451.                 } else {
  452.                     dragElClass = n.nextSibling ? "x-tree-drop-ok-between" : "x-tree-drop-ok-below";
  453.                     targetElClass = "x-view-drag-insert-below";
  454.                 }
  455.                 if (this.lastInsertClass != targetElClass){
  456.                     Ext.fly(n).replaceClass(this.lastInsertClass, targetElClass);
  457.                     this.lastInsertClass = targetElClass;
  458.                 }
  459.             }
  460.         }
  461.         return dragElClass;
  462.     },
  463.     // private
  464.     onNodeOut : function(n, dd, e, data){
  465.         this.removeDropIndicators(n);
  466.     },
  467.     // private
  468.     onNodeDrop : function(n, dd, e, data){
  469.         if (this.ms.fireEvent("drop", this, n, dd, e, data) === false) {
  470.             return false;
  471.         }
  472.         var pt = this.getDropPoint(e, n, dd);
  473.         if (n != this.ms.fs.body.dom)
  474.             n = this.view.findItemFromChild(n);
  475.         var insertAt = (this.ms.appendOnly || (n == this.ms.fs.body.dom)) ? this.view.store.getCount() : this.view.indexOf(n);
  476.         if (pt == "below") {
  477.             insertAt++;
  478.         }
  479.         var dir = false;
  480.         // Validate if dragging within the same MultiSelect
  481.         if (data.sourceView == this.view) {
  482.             // If the first element to be inserted below is the target node, remove it
  483.             if (pt == "below") {
  484.                 if (data.viewNodes[0] == n) {
  485.                     data.viewNodes.shift();
  486.                 }
  487.             } else {  // If the last element to be inserted above is the target node, remove it
  488.                 if (data.viewNodes[data.viewNodes.length - 1] == n) {
  489.                     data.viewNodes.pop();
  490.                 }
  491.             }
  492.             // Nothing to drop...
  493.             if (!data.viewNodes.length) {
  494.                 return false;
  495.             }
  496.             // If we are moving DOWN, then because a store.remove() takes place first,
  497.             // the insertAt must be decremented.
  498.             if (insertAt > this.view.store.indexOf(data.records[0])) {
  499.                 dir = 'down';
  500.                 insertAt--;
  501.             }
  502.         }
  503.         for (var i = 0; i < data.records.length; i++) {
  504.             var r = data.records[i];
  505.             if (data.sourceView) {
  506.                 data.sourceView.store.remove(r);
  507.             }
  508.             this.view.store.insert(dir == 'down' ? insertAt : insertAt++, r);
  509.             var si = this.view.store.sortInfo;
  510.             if(si){
  511.                 this.view.store.sort(si.field, si.direction);
  512.             }
  513.         }
  514.         return true;
  515.     },
  516.     // private
  517.     removeDropIndicators : function(n){
  518.         if(n){
  519.             Ext.fly(n).removeClass([
  520.                 "x-view-drag-insert-above",
  521.                 "x-view-drag-insert-left",
  522.                 "x-view-drag-insert-right",
  523.                 "x-view-drag-insert-below"]);
  524.             this.lastInsertClass = "_noclass";
  525.         }
  526.     },
  527.     // private
  528.     setDroppable: function(ddGroup){
  529.         if (!ddGroup) return;
  530.         if (Ext.isArray(ddGroup)) {
  531.             Ext.each(ddGroup, this.setDroppable, this);
  532.             return;
  533.         }
  534.         this.addToGroup(ddGroup);
  535.     }
  536. });