ux-all-debug.js
上传用户:dawnssy
上传日期:2022-08-06
资源大小:9345k
文件大小:337k
源码类别:

JavaScript

开发平台:

JavaScript

  1.                 this.scroller.dom.style.position = 'static';
  2.                 this.lockedScroller.dom.style.position = 'static';
  3.             }
  4.         }else{
  5.             this.el.setSize(csize.width, csize.height);
  6.             var hdHeight = this.mainHd.getHeight();
  7.             var vh = csize.height - (hdHeight);
  8.         }
  9.         this.updateLockedWidth();
  10.         if(this.forceFit){
  11.             if(this.lastViewWidth != vw){
  12.                 this.fitColumns(false, false);
  13.                 this.lastViewWidth = vw;
  14.             }
  15.         }else {
  16.             this.autoExpand();
  17.             this.syncHeaderScroll();
  18.         }
  19.         this.onLayout(vw, vh);
  20.     },
  21.     
  22.     getOffsetWidth : function() {
  23.         return (this.cm.getTotalWidth() - this.cm.getTotalLockedWidth() + this.getScrollOffset()) + 'px';
  24.     },
  25.     
  26.     renderHeaders : function(){
  27.         var cm = this.cm,
  28.             ts = this.templates,
  29.             ct = ts.hcell,
  30.             cb = [], lcb = [],
  31.             p = {},
  32.             len = cm.getColumnCount(),
  33.             last = len - 1;
  34.         for(var i = 0; i < len; i++){
  35.             p.id = cm.getColumnId(i);
  36.             p.value = cm.getColumnHeader(i) || '';
  37.             p.style = this.getColumnStyle(i, true);
  38.             p.tooltip = this.getColumnTooltip(i);
  39.             p.css = (i === 0 ? 'x-grid3-cell-first ' : (i == last ? 'x-grid3-cell-last ' : '')) +
  40.                 (cm.config[i].headerCls ? ' ' + cm.config[i].headerCls : '');
  41.             if(cm.config[i].align == 'right'){
  42.                 p.istyle = 'padding-right:16px';
  43.             } else {
  44.                 delete p.istyle;
  45.             }
  46.             if(cm.isLocked(i)){
  47.                 lcb[lcb.length] = ct.apply(p);
  48.             }else{
  49.                 cb[cb.length] = ct.apply(p);
  50.             }
  51.         }
  52.         return [ts.header.apply({cells: cb.join(''), tstyle:'width:'+this.getTotalWidth()+';'}),
  53.                 ts.header.apply({cells: lcb.join(''), tstyle:'width:'+this.getLockedWidth()+';'})];
  54.     },
  55.     
  56.     updateHeaders : function(){
  57.         var hd = this.renderHeaders();
  58.         this.innerHd.firstChild.innerHTML = hd[0];
  59.         this.innerHd.firstChild.style.width = this.getOffsetWidth();
  60.         this.innerHd.firstChild.firstChild.style.width = this.getTotalWidth();
  61.         this.lockedInnerHd.firstChild.innerHTML = hd[1];
  62.         var lw = this.getLockedWidth();
  63.         this.lockedInnerHd.firstChild.style.width = lw;
  64.         this.lockedInnerHd.firstChild.firstChild.style.width = lw;
  65.     },
  66.     
  67.     getResolvedXY : function(resolved){
  68.         if(!resolved){
  69.             return null;
  70.         }
  71.         var c = resolved.cell, r = resolved.row;
  72.         return c ? Ext.fly(c).getXY() : [this.scroller.getX(), Ext.fly(r).getY()];
  73.     },
  74.     
  75.     syncFocusEl : function(row, col, hscroll){
  76.         Ext.ux.grid.LockingGridView.superclass.syncFocusEl.call(this, row, col, col < this.cm.getLockedCount() ? false : hscroll);
  77.     },
  78.     
  79.     ensureVisible : function(row, col, hscroll){
  80.         return Ext.ux.grid.LockingGridView.superclass.ensureVisible.call(this, row, col, col < this.cm.getLockedCount() ? false : hscroll);
  81.     },
  82.     
  83.     insertRows : function(dm, firstRow, lastRow, isUpdate){
  84.         var last = dm.getCount() - 1;
  85.         if(!isUpdate && firstRow === 0 && lastRow >= last){
  86.             this.refresh();
  87.         }else{
  88.             if(!isUpdate){
  89.                 this.fireEvent('beforerowsinserted', this, firstRow, lastRow);
  90.             }
  91.             var html = this.renderRows(firstRow, lastRow),
  92.                 before = this.getRow(firstRow);
  93.             if(before){
  94.                 if(firstRow === 0){
  95.                     this.removeRowClass(0, this.firstRowCls);
  96.                 }
  97.                 Ext.DomHelper.insertHtml('beforeBegin', before, html[0]);
  98.                 before = this.getLockedRow(firstRow);
  99.                 Ext.DomHelper.insertHtml('beforeBegin', before, html[1]);
  100.             }else{
  101.                 this.removeRowClass(last - 1, this.lastRowCls);
  102.                 Ext.DomHelper.insertHtml('beforeEnd', this.mainBody.dom, html[0]);
  103.                 Ext.DomHelper.insertHtml('beforeEnd', this.lockedBody.dom, html[1]);
  104.             }
  105.             if(!isUpdate){
  106.                 this.fireEvent('rowsinserted', this, firstRow, lastRow);
  107.                 this.processRows(firstRow);
  108.             }else if(firstRow === 0 || firstRow >= last){
  109.                 this.addRowClass(firstRow, firstRow === 0 ? this.firstRowCls : this.lastRowCls);
  110.             }
  111.         }
  112.         this.syncFocusEl(firstRow);
  113.     },
  114.     
  115.     getColumnStyle : function(col, isHeader){
  116.         var style = !isHeader ? this.cm.config[col].cellStyle || this.cm.config[col].css || '' : this.cm.config[col].headerStyle || '';
  117.         style += 'width:'+this.getColumnWidth(col)+';';
  118.         if(this.cm.isHidden(col)){
  119.             style += 'display:none;';
  120.         }
  121.         var align = this.cm.config[col].align;
  122.         if(align){
  123.             style += 'text-align:'+align+';';
  124.         }
  125.         return style;
  126.     },
  127.     
  128.     getLockedWidth : function() {
  129.         return this.cm.getTotalLockedWidth() + 'px';
  130.     },
  131.     
  132.     getTotalWidth : function() {
  133.         return (this.cm.getTotalWidth() - this.cm.getTotalLockedWidth()) + 'px';
  134.     },
  135.     
  136.     getColumnData : function(){
  137.         var cs = [], cm = this.cm, colCount = cm.getColumnCount();
  138.         for(var i = 0; i < colCount; i++){
  139.             var name = cm.getDataIndex(i);
  140.             cs[i] = {
  141.                 name : (!Ext.isDefined(name) ? this.ds.fields.get(i).name : name),
  142.                 renderer : cm.getRenderer(i),
  143.                 id : cm.getColumnId(i),
  144.                 style : this.getColumnStyle(i),
  145.                 locked : cm.isLocked(i)
  146.             };
  147.         }
  148.         return cs;
  149.     },
  150.     
  151.     renderBody : function(){
  152.         var markup = this.renderRows() || ['&#160;', '&#160;'];
  153.         return [this.templates.body.apply({rows: markup[0]}), this.templates.body.apply({rows: markup[1]})];
  154.     },
  155.     
  156.     refreshRow : function(record){
  157.         Ext.ux.grid.LockingGridView.superclass.refreshRow.call(this, record);
  158.         var index = Ext.isNumber(record) ? record : this.ds.indexOf(record);
  159.         this.getLockedRow(index).rowIndex = index;
  160.     },
  161.     
  162.     refresh : function(headersToo){
  163.         this.fireEvent('beforerefresh', this);
  164.         this.grid.stopEditing(true);
  165.         var result = this.renderBody();
  166.         this.mainBody.update(result[0]).setWidth(this.getTotalWidth());
  167.         this.lockedBody.update(result[1]).setWidth(this.getLockedWidth());
  168.         if(headersToo === true){
  169.             this.updateHeaders();
  170.             this.updateHeaderSortState();
  171.         }
  172.         this.processRows(0, true);
  173.         this.layout();
  174.         this.applyEmptyText();
  175.         this.fireEvent('refresh', this);
  176.     },
  177.     
  178.     onDenyColumnLock : function(){
  179.     },
  180.     
  181.     initData : function(ds, cm){
  182.         if(this.cm){
  183.             this.cm.un('columnlockchange', this.onColumnLock, this);
  184.         }
  185.         Ext.ux.grid.LockingGridView.superclass.initData.call(this, ds, cm);
  186.         if(this.cm){
  187.             this.cm.on('columnlockchange', this.onColumnLock, this);
  188.         }
  189.     },
  190.     
  191.     onColumnLock : function(){
  192.         this.refresh(true);
  193.     },
  194.     
  195.     handleHdMenuClick : function(item){
  196.         var index = this.hdCtxIndex,
  197.             cm = this.cm,
  198.             id = item.getItemId(),
  199.             llen = cm.getLockedCount();
  200.         switch(id){
  201.             case 'lock':
  202.                 if(cm.getColumnCount(true) <= llen + 1){
  203.                     this.onDenyColumnLock();
  204.                     return;
  205.                 }
  206.                 if(llen != index){
  207.                     cm.setLocked(index, true, true);
  208.                     cm.moveColumn(index, llen);
  209.                     this.grid.fireEvent('columnmove', index, llen);
  210.                 }else{
  211.                     cm.setLocked(index, true);
  212.                 }
  213.             break;
  214.             case 'unlock':
  215.                 if(llen - 1 != index){
  216.                     cm.setLocked(index, false, true);
  217.                     cm.moveColumn(index, llen - 1);
  218.                     this.grid.fireEvent('columnmove', index, llen - 1);
  219.                 }else{
  220.                     cm.setLocked(index, false);
  221.                 }
  222.             break;
  223.             default:
  224.                 return Ext.ux.grid.LockingGridView.superclass.handleHdMenuClick.call(this, item);
  225.         }
  226.         return true;
  227.     },
  228.     
  229.     handleHdDown : function(e, t){
  230.         Ext.ux.grid.LockingGridView.superclass.handleHdDown.call(this, e, t);
  231.         if(this.grid.enableColLock !== false){
  232.             if(Ext.fly(t).hasClass('x-grid3-hd-btn')){
  233.                 var hd = this.findHeaderCell(t),
  234.                     index = this.getCellIndex(hd),
  235.                     ms = this.hmenu.items, cm = this.cm;
  236.                 ms.get('lock').setDisabled(cm.isLocked(index));
  237.                 ms.get('unlock').setDisabled(!cm.isLocked(index));
  238.             }
  239.         }
  240.     },
  241.     
  242.     syncHeaderHeight: function(){
  243.         this.innerHd.firstChild.firstChild.style.height = 'auto';
  244.         this.lockedInnerHd.firstChild.firstChild.style.height = 'auto';
  245.         var hd = this.innerHd.firstChild.firstChild.offsetHeight,
  246.             lhd = this.lockedInnerHd.firstChild.firstChild.offsetHeight,
  247.             height = (lhd > hd ? lhd : hd) + 'px';
  248.         this.innerHd.firstChild.firstChild.style.height = height;
  249.         this.lockedInnerHd.firstChild.firstChild.style.height = height;
  250.     },
  251.     
  252.     updateLockedWidth: function(){
  253.         var lw = this.cm.getTotalLockedWidth(),
  254.             tw = this.cm.getTotalWidth() - lw,
  255.             csize = this.grid.getGridEl().getSize(true),
  256.             lp = Ext.isBorderBox ? 0 : this.lockedBorderWidth,
  257.             rp = Ext.isBorderBox ? 0 : this.rowBorderWidth,
  258.             vw = (csize.width - lw - lp - rp) + 'px',
  259.             so = this.getScrollOffset();
  260.         if(!this.grid.autoHeight){
  261.             var vh = (csize.height - this.mainHd.getHeight()) + 'px';
  262.             this.lockedScroller.dom.style.height = vh;
  263.             this.scroller.dom.style.height = vh;
  264.         }
  265.         this.lockedWrap.dom.style.width = (lw + rp) + 'px';
  266.         this.scroller.dom.style.width = vw;
  267.         this.mainWrap.dom.style.left = (lw + lp + rp) + 'px';
  268.         if(this.innerHd){
  269.             this.lockedInnerHd.firstChild.style.width = lw + 'px';
  270.             this.lockedInnerHd.firstChild.firstChild.style.width = lw + 'px';
  271.             this.innerHd.style.width = vw;
  272.             this.innerHd.firstChild.style.width = (tw + rp + so) + 'px';
  273.             this.innerHd.firstChild.firstChild.style.width = tw + 'px';
  274.         }
  275.         if(this.mainBody){
  276.             this.lockedBody.dom.style.width = (lw + rp) + 'px';
  277.             this.mainBody.dom.style.width = (tw + rp) + 'px';
  278.         }
  279.     }
  280. });
  281. Ext.ux.grid.LockingColumnModel = Ext.extend(Ext.grid.ColumnModel, {
  282.     isLocked : function(colIndex){
  283.         return this.config[colIndex].locked === true;
  284.     },
  285.     
  286.     setLocked : function(colIndex, value, suppressEvent){
  287.         if(this.isLocked(colIndex) == value){
  288.             return;
  289.         }
  290.         this.config[colIndex].locked = value;
  291.         if(!suppressEvent){
  292.             this.fireEvent('columnlockchange', this, colIndex, value);
  293.         }
  294.     },
  295.     
  296.     getTotalLockedWidth : function(){
  297.         var totalWidth = 0;
  298.         for(var i = 0, len = this.config.length; i < len; i++){
  299.             if(this.isLocked(i) && !this.isHidden(i)){
  300.                 totalWidth += this.getColumnWidth(i);
  301.             }
  302.         }
  303.         return totalWidth;
  304.     },
  305.     
  306.     getLockedCount : function(){
  307.         for(var i = 0, len = this.config.length; i < len; i++){
  308.             if(!this.isLocked(i)){
  309.                 return i;
  310.             }
  311.         }
  312.     },
  313.     
  314.     moveColumn : function(oldIndex, newIndex){
  315.         if(oldIndex < newIndex && this.isLocked(oldIndex) && !this.isLocked(newIndex)){
  316.             this.setLocked(oldIndex, false, true);
  317.         }else if(oldIndex > newIndex && !this.isLocked(oldIndex) && this.isLocked(newIndex)){
  318.             this.setLocked(oldIndex, true, true);
  319.         }
  320.         Ext.ux.grid.LockingColumnModel.superclass.moveColumn.apply(this, arguments);
  321.     }
  322. });
  323. Ext.ns('Ext.ux.form');
  324. /**
  325.  * @class Ext.ux.form.MultiSelect
  326.  * @extends Ext.form.Field
  327.  * A control that allows selection and form submission of multiple list items.
  328.  *
  329.  *  @history
  330.  *    2008-06-19 bpm Original code contributed by Toby Stuart (with contributions from Robert Williams)
  331.  *    2008-06-19 bpm Docs and demo code clean up
  332.  *
  333.  * @constructor
  334.  * Create a new MultiSelect
  335.  * @param {Object} config Configuration options
  336.  * @xtype multiselect 
  337.  */
  338. Ext.ux.form.MultiSelect = Ext.extend(Ext.form.Field,  {
  339.     /**
  340.      * @cfg {String} legend Wraps the object with a fieldset and specified legend.
  341.      */
  342.     /**
  343.      * @cfg {Ext.ListView} view The {@link Ext.ListView} used to render the multiselect list.
  344.      */
  345.     /**
  346.      * @cfg {String/Array} dragGroup The ddgroup name(s) for the MultiSelect DragZone (defaults to undefined).
  347.      */
  348.     /**
  349.      * @cfg {String/Array} dropGroup The ddgroup name(s) for the MultiSelect DropZone (defaults to undefined).
  350.      */
  351.     /**
  352.      * @cfg {Boolean} ddReorder Whether the items in the MultiSelect list are drag/drop reorderable (defaults to false).
  353.      */
  354.     ddReorder:false,
  355.     /**
  356.      * @cfg {Object/Array} tbar The top toolbar of the control. This can be a {@link Ext.Toolbar} object, a
  357.      * toolbar config, or an array of buttons/button configs to be added to the toolbar.
  358.      */
  359.     /**
  360.      * @cfg {String} appendOnly True if the list should only allow append drops when drag/drop is enabled
  361.      * (use for lists which are sorted, defaults to false).
  362.      */
  363.     appendOnly:false,
  364.     /**
  365.      * @cfg {Number} width Width in pixels of the control (defaults to 100).
  366.      */
  367.     width:100,
  368.     /**
  369.      * @cfg {Number} height Height in pixels of the control (defaults to 100).
  370.      */
  371.     height:100,
  372.     /**
  373.      * @cfg {String/Number} displayField Name/Index of the desired display field in the dataset (defaults to 0).
  374.      */
  375.     displayField:0,
  376.     /**
  377.      * @cfg {String/Number} valueField Name/Index of the desired value field in the dataset (defaults to 1).
  378.      */
  379.     valueField:1,
  380.     /**
  381.      * @cfg {Boolean} allowBlank False to require at least one item in the list to be selected, true to allow no
  382.      * selection (defaults to true).
  383.      */
  384.     allowBlank:true,
  385.     /**
  386.      * @cfg {Number} minSelections Minimum number of selections allowed (defaults to 0).
  387.      */
  388.     minSelections:0,
  389.     /**
  390.      * @cfg {Number} maxSelections Maximum number of selections allowed (defaults to Number.MAX_VALUE).
  391.      */
  392.     maxSelections:Number.MAX_VALUE,
  393.     /**
  394.      * @cfg {String} blankText Default text displayed when the control contains no items (defaults to the same value as
  395.      * {@link Ext.form.TextField#blankText}.
  396.      */
  397.     blankText:Ext.form.TextField.prototype.blankText,
  398.     /**
  399.      * @cfg {String} minSelectionsText Validation message displayed when {@link #minSelections} is not met (defaults to 'Minimum {0}
  400.      * item(s) required').  The {0} token will be replaced by the value of {@link #minSelections}.
  401.      */
  402.     minSelectionsText:'Minimum {0} item(s) required',
  403.     /**
  404.      * @cfg {String} maxSelectionsText Validation message displayed when {@link #maxSelections} is not met (defaults to 'Maximum {0}
  405.      * item(s) allowed').  The {0} token will be replaced by the value of {@link #maxSelections}.
  406.      */
  407.     maxSelectionsText:'Maximum {0} item(s) allowed',
  408.     /**
  409.      * @cfg {String} delimiter The string used to delimit between items when set or returned as a string of values
  410.      * (defaults to ',').
  411.      */
  412.     delimiter:',',
  413.     /**
  414.      * @cfg {Ext.data.Store/Array} store The data source to which this MultiSelect is bound (defaults to <tt>undefined</tt>).
  415.      * Acceptable values for this property are:
  416.      * <div class="mdetail-params"><ul>
  417.      * <li><b>any {@link Ext.data.Store Store} subclass</b></li>
  418.      * <li><b>an Array</b> : Arrays will be converted to a {@link Ext.data.ArrayStore} internally.
  419.      * <div class="mdetail-params"><ul>
  420.      * <li><b>1-dimensional array</b> : (e.g., <tt>['Foo','Bar']</tt>)<div class="sub-desc">
  421.      * A 1-dimensional array will automatically be expanded (each array item will be the combo
  422.      * {@link #valueField value} and {@link #displayField text})</div></li>
  423.      * <li><b>2-dimensional array</b> : (e.g., <tt>[['f','Foo'],['b','Bar']]</tt>)<div class="sub-desc">
  424.      * For a multi-dimensional array, the value in index 0 of each item will be assumed to be the combo
  425.      * {@link #valueField value}, while the value at index 1 is assumed to be the combo {@link #displayField text}.
  426.      * </div></li></ul></div></li></ul></div>
  427.      */
  428.     // private
  429.     defaultAutoCreate : {tag: "div"},
  430.     // private
  431.     initComponent: function(){
  432.         Ext.ux.form.MultiSelect.superclass.initComponent.call(this);
  433.         if(Ext.isArray(this.store)){
  434.             if (Ext.isArray(this.store[0])){
  435.                 this.store = new Ext.data.ArrayStore({
  436.                     fields: ['value','text'],
  437.                     data: this.store
  438.                 });
  439.                 this.valueField = 'value';
  440.             }else{
  441.                 this.store = new Ext.data.ArrayStore({
  442.                     fields: ['text'],
  443.                     data: this.store,
  444.                     expandData: true
  445.                 });
  446.                 this.valueField = 'text';
  447.             }
  448.             this.displayField = 'text';
  449.         } else {
  450.             this.store = Ext.StoreMgr.lookup(this.store);
  451.         }
  452.         this.addEvents({
  453.             'dblclick' : true,
  454.             'click' : true,
  455.             'change' : true,
  456.             'drop' : true
  457.         });
  458.     },
  459.     // private
  460.     onRender: function(ct, position){
  461.         Ext.ux.form.MultiSelect.superclass.onRender.call(this, ct, position);
  462.         var fs = this.fs = new Ext.form.FieldSet({
  463.             renderTo: this.el,
  464.             title: this.legend,
  465.             height: this.height,
  466.             width: this.width,
  467.             style: "padding:0;",
  468.             tbar: this.tbar
  469.         });
  470.         fs.body.addClass('ux-mselect');
  471.         this.view = new Ext.ListView({
  472.             multiSelect: true,
  473.             store: this.store,
  474.             columns: [{ header: 'Value', width: 1, dataIndex: this.displayField }],
  475.             hideHeaders: true
  476.         });
  477.         fs.add(this.view);
  478.         this.view.on('click', this.onViewClick, this);
  479.         this.view.on('beforeclick', this.onViewBeforeClick, this);
  480.         this.view.on('dblclick', this.onViewDblClick, this);
  481.         this.hiddenName = this.name || Ext.id();
  482.         var hiddenTag = { tag: "input", type: "hidden", value: "", name: this.hiddenName };
  483.         this.hiddenField = this.el.createChild(hiddenTag);
  484.         this.hiddenField.dom.disabled = this.hiddenName != this.name;
  485.         fs.doLayout();
  486.     },
  487.     // private
  488.     afterRender: function(){
  489.         Ext.ux.form.MultiSelect.superclass.afterRender.call(this);
  490.         if (this.ddReorder && !this.dragGroup && !this.dropGroup){
  491.             this.dragGroup = this.dropGroup = 'MultiselectDD-' + Ext.id();
  492.         }
  493.         if (this.draggable || this.dragGroup){
  494.             this.dragZone = new Ext.ux.form.MultiSelect.DragZone(this, {
  495.                 ddGroup: this.dragGroup
  496.             });
  497.         }
  498.         if (this.droppable || this.dropGroup){
  499.             this.dropZone = new Ext.ux.form.MultiSelect.DropZone(this, {
  500.                 ddGroup: this.dropGroup
  501.             });
  502.         }
  503.     },
  504.     // private
  505.     onViewClick: function(vw, index, node, e) {
  506.         this.fireEvent('change', this, this.getValue(), this.hiddenField.dom.value);
  507.         this.hiddenField.dom.value = this.getValue();
  508.         this.fireEvent('click', this, e);
  509.         this.validate();
  510.     },
  511.     // private
  512.     onViewBeforeClick: function(vw, index, node, e) {
  513.         if (this.disabled) {return false;}
  514.     },
  515.     // private
  516.     onViewDblClick : function(vw, index, node, e) {
  517.         return this.fireEvent('dblclick', vw, index, node, e);
  518.     },
  519.     /**
  520.      * Returns an array of data values for the selected items in the list. The values will be separated
  521.      * by {@link #delimiter}.
  522.      * @return {Array} value An array of string data values
  523.      */
  524.     getValue: function(valueField){
  525.         var returnArray = [];
  526.         var selectionsArray = this.view.getSelectedIndexes();
  527.         if (selectionsArray.length == 0) {return '';}
  528.         for (var i=0; i<selectionsArray.length; i++) {
  529.             returnArray.push(this.store.getAt(selectionsArray[i]).get((valueField != null) ? valueField : this.valueField));
  530.         }
  531.         return returnArray.join(this.delimiter);
  532.     },
  533.     /**
  534.      * Sets a delimited string (using {@link #delimiter}) or array of data values into the list.
  535.      * @param {String/Array} values The values to set
  536.      */
  537.     setValue: function(values) {
  538.         var index;
  539.         var selections = [];
  540.         this.view.clearSelections();
  541.         this.hiddenField.dom.value = '';
  542.         if (!values || (values == '')) { return; }
  543.         if (!Ext.isArray(values)) { values = values.split(this.delimiter); }
  544.         for (var i=0; i<values.length; i++) {
  545.             index = this.view.store.indexOf(this.view.store.query(this.valueField,
  546.                 new RegExp('^' + values[i] + '$', "i")).itemAt(0));
  547.             selections.push(index);
  548.         }
  549.         this.view.select(selections);
  550.         this.hiddenField.dom.value = this.getValue();
  551.         this.validate();
  552.     },
  553.     // inherit docs
  554.     reset : function() {
  555.         this.setValue('');
  556.     },
  557.     // inherit docs
  558.     getRawValue: function(valueField) {
  559.         var tmp = this.getValue(valueField);
  560.         if (tmp.length) {
  561.             tmp = tmp.split(this.delimiter);
  562.         }
  563.         else {
  564.             tmp = [];
  565.         }
  566.         return tmp;
  567.     },
  568.     // inherit docs
  569.     setRawValue: function(values){
  570.         setValue(values);
  571.     },
  572.     // inherit docs
  573.     validateValue : function(value){
  574.         if (value.length < 1) { // if it has no value
  575.              if (this.allowBlank) {
  576.                  this.clearInvalid();
  577.                  return true;
  578.              } else {
  579.                  this.markInvalid(this.blankText);
  580.                  return false;
  581.              }
  582.         }
  583.         if (value.length < this.minSelections) {
  584.             this.markInvalid(String.format(this.minSelectionsText, this.minSelections));
  585.             return false;
  586.         }
  587.         if (value.length > this.maxSelections) {
  588.             this.markInvalid(String.format(this.maxSelectionsText, this.maxSelections));
  589.             return false;
  590.         }
  591.         return true;
  592.     },
  593.     // inherit docs
  594.     disable: function(){
  595.         this.disabled = true;
  596.         this.hiddenField.dom.disabled = true;
  597.         this.fs.disable();
  598.     },
  599.     // inherit docs
  600.     enable: function(){
  601.         this.disabled = false;
  602.         this.hiddenField.dom.disabled = false;
  603.         this.fs.enable();
  604.     },
  605.     // inherit docs
  606.     destroy: function(){
  607.         Ext.destroy(this.fs, this.dragZone, this.dropZone);
  608.         Ext.ux.form.MultiSelect.superclass.destroy.call(this);
  609.     }
  610. });
  611. Ext.reg('multiselect', Ext.ux.form.MultiSelect);
  612. //backwards compat
  613. Ext.ux.Multiselect = Ext.ux.form.MultiSelect;
  614. Ext.ux.form.MultiSelect.DragZone = function(ms, config){
  615.     this.ms = ms;
  616.     this.view = ms.view;
  617.     var ddGroup = config.ddGroup || 'MultiselectDD';
  618.     var dd;
  619.     if (Ext.isArray(ddGroup)){
  620.         dd = ddGroup.shift();
  621.     } else {
  622.         dd = ddGroup;
  623.         ddGroup = null;
  624.     }
  625.     Ext.ux.form.MultiSelect.DragZone.superclass.constructor.call(this, this.ms.fs.body, { containerScroll: true, ddGroup: dd });
  626.     this.setDraggable(ddGroup);
  627. };
  628. Ext.extend(Ext.ux.form.MultiSelect.DragZone, Ext.dd.DragZone, {
  629.     onInitDrag : function(x, y){
  630.         var el = Ext.get(this.dragData.ddel.cloneNode(true));
  631.         this.proxy.update(el.dom);
  632.         el.setWidth(el.child('em').getWidth());
  633.         this.onStartDrag(x, y);
  634.         return true;
  635.     },
  636.     
  637.     // private
  638.     collectSelection: function(data) {
  639.         data.repairXY = Ext.fly(this.view.getSelectedNodes()[0]).getXY();
  640.         var i = 0;
  641.         this.view.store.each(function(rec){
  642.             if (this.view.isSelected(i)) {
  643.                 var n = this.view.getNode(i);
  644.                 var dragNode = n.cloneNode(true);
  645.                 dragNode.id = Ext.id();
  646.                 data.ddel.appendChild(dragNode);
  647.                 data.records.push(this.view.store.getAt(i));
  648.                 data.viewNodes.push(n);
  649.             }
  650.             i++;
  651.         }, this);
  652.     },
  653.     // override
  654.     onEndDrag: function(data, e) {
  655.         var d = Ext.get(this.dragData.ddel);
  656.         if (d && d.hasClass("multi-proxy")) {
  657.             d.remove();
  658.         }
  659.     },
  660.     // override
  661.     getDragData: function(e){
  662.         var target = this.view.findItemFromChild(e.getTarget());
  663.         if(target) {
  664.             if (!this.view.isSelected(target) && !e.ctrlKey && !e.shiftKey) {
  665.                 this.view.select(target);
  666.                 this.ms.setValue(this.ms.getValue());
  667.             }
  668.             if (this.view.getSelectionCount() == 0 || e.ctrlKey || e.shiftKey) return false;
  669.             var dragData = {
  670.                 sourceView: this.view,
  671.                 viewNodes: [],
  672.                 records: []
  673.             };
  674.             if (this.view.getSelectionCount() == 1) {
  675.                 var i = this.view.getSelectedIndexes()[0];
  676.                 var n = this.view.getNode(i);
  677.                 dragData.viewNodes.push(dragData.ddel = n);
  678.                 dragData.records.push(this.view.store.getAt(i));
  679.                 dragData.repairXY = Ext.fly(n).getXY();
  680.             } else {
  681.                 dragData.ddel = document.createElement('div');
  682.                 dragData.ddel.className = 'multi-proxy';
  683.                 this.collectSelection(dragData);
  684.             }
  685.             return dragData;
  686.         }
  687.         return false;
  688.     },
  689.     // override the default repairXY.
  690.     getRepairXY : function(e){
  691.         return this.dragData.repairXY;
  692.     },
  693.     // private
  694.     setDraggable: function(ddGroup){
  695.         if (!ddGroup) return;
  696.         if (Ext.isArray(ddGroup)) {
  697.             Ext.each(ddGroup, this.setDraggable, this);
  698.             return;
  699.         }
  700.         this.addToGroup(ddGroup);
  701.     }
  702. });
  703. Ext.ux.form.MultiSelect.DropZone = function(ms, config){
  704.     this.ms = ms;
  705.     this.view = ms.view;
  706.     var ddGroup = config.ddGroup || 'MultiselectDD';
  707.     var dd;
  708.     if (Ext.isArray(ddGroup)){
  709.         dd = ddGroup.shift();
  710.     } else {
  711.         dd = ddGroup;
  712.         ddGroup = null;
  713.     }
  714.     Ext.ux.form.MultiSelect.DropZone.superclass.constructor.call(this, this.ms.fs.body, { containerScroll: true, ddGroup: dd });
  715.     this.setDroppable(ddGroup);
  716. };
  717. Ext.extend(Ext.ux.form.MultiSelect.DropZone, Ext.dd.DropZone, {
  718.     /**
  719.  * Part of the Ext.dd.DropZone interface. If no target node is found, the
  720.  * whole Element becomes the target, and this causes the drop gesture to append.
  721.  */
  722.     getTargetFromEvent : function(e) {
  723.         var target = e.getTarget();
  724.         return target;
  725.     },
  726.     // private
  727.     getDropPoint : function(e, n, dd){
  728.         if (n == this.ms.fs.body.dom) { return "below"; }
  729.         var t = Ext.lib.Dom.getY(n), b = t + n.offsetHeight;
  730.         var c = t + (b - t) / 2;
  731.         var y = Ext.lib.Event.getPageY(e);
  732.         if(y <= c) {
  733.             return "above";
  734.         }else{
  735.             return "below";
  736.         }
  737.     },
  738.     // private
  739.     isValidDropPoint: function(pt, n, data) {
  740.         if (!data.viewNodes || (data.viewNodes.length != 1)) {
  741.             return true;
  742.         }
  743.         var d = data.viewNodes[0];
  744.         if (d == n) {
  745.             return false;
  746.         }
  747.         if ((pt == "below") && (n.nextSibling == d)) {
  748.             return false;
  749.         }
  750.         if ((pt == "above") && (n.previousSibling == d)) {
  751.             return false;
  752.         }
  753.         return true;
  754.     },
  755.     // override
  756.     onNodeEnter : function(n, dd, e, data){
  757.         return false;
  758.     },
  759.     // override
  760.     onNodeOver : function(n, dd, e, data){
  761.         var dragElClass = this.dropNotAllowed;
  762.         var pt = this.getDropPoint(e, n, dd);
  763.         if (this.isValidDropPoint(pt, n, data)) {
  764.             if (this.ms.appendOnly) {
  765.                 return "x-tree-drop-ok-below";
  766.             }
  767.             // set the insert point style on the target node
  768.             if (pt) {
  769.                 var targetElClass;
  770.                 if (pt == "above"){
  771.                     dragElClass = n.previousSibling ? "x-tree-drop-ok-between" : "x-tree-drop-ok-above";
  772.                     targetElClass = "x-view-drag-insert-above";
  773.                 } else {
  774.                     dragElClass = n.nextSibling ? "x-tree-drop-ok-between" : "x-tree-drop-ok-below";
  775.                     targetElClass = "x-view-drag-insert-below";
  776.                 }
  777.                 if (this.lastInsertClass != targetElClass){
  778.                     Ext.fly(n).replaceClass(this.lastInsertClass, targetElClass);
  779.                     this.lastInsertClass = targetElClass;
  780.                 }
  781.             }
  782.         }
  783.         return dragElClass;
  784.     },
  785.     // private
  786.     onNodeOut : function(n, dd, e, data){
  787.         this.removeDropIndicators(n);
  788.     },
  789.     // private
  790.     onNodeDrop : function(n, dd, e, data){
  791.         if (this.ms.fireEvent("drop", this, n, dd, e, data) === false) {
  792.             return false;
  793.         }
  794.         var pt = this.getDropPoint(e, n, dd);
  795.         if (n != this.ms.fs.body.dom)
  796.             n = this.view.findItemFromChild(n);
  797.         var insertAt = (this.ms.appendOnly || (n == this.ms.fs.body.dom)) ? this.view.store.getCount() : this.view.indexOf(n);
  798.         if (pt == "below") {
  799.             insertAt++;
  800.         }
  801.         var dir = false;
  802.         // Validate if dragging within the same MultiSelect
  803.         if (data.sourceView == this.view) {
  804.             // If the first element to be inserted below is the target node, remove it
  805.             if (pt == "below") {
  806.                 if (data.viewNodes[0] == n) {
  807.                     data.viewNodes.shift();
  808.                 }
  809.             } else {  // If the last element to be inserted above is the target node, remove it
  810.                 if (data.viewNodes[data.viewNodes.length - 1] == n) {
  811.                     data.viewNodes.pop();
  812.                 }
  813.             }
  814.             // Nothing to drop...
  815.             if (!data.viewNodes.length) {
  816.                 return false;
  817.             }
  818.             // If we are moving DOWN, then because a store.remove() takes place first,
  819.             // the insertAt must be decremented.
  820.             if (insertAt > this.view.store.indexOf(data.records[0])) {
  821.                 dir = 'down';
  822.                 insertAt--;
  823.             }
  824.         }
  825.         for (var i = 0; i < data.records.length; i++) {
  826.             var r = data.records[i];
  827.             if (data.sourceView) {
  828.                 data.sourceView.store.remove(r);
  829.             }
  830.             this.view.store.insert(dir == 'down' ? insertAt : insertAt++, r);
  831.             var si = this.view.store.sortInfo;
  832.             if(si){
  833.                 this.view.store.sort(si.field, si.direction);
  834.             }
  835.         }
  836.         return true;
  837.     },
  838.     // private
  839.     removeDropIndicators : function(n){
  840.         if(n){
  841.             Ext.fly(n).removeClass([
  842.                 "x-view-drag-insert-above",
  843.                 "x-view-drag-insert-left",
  844.                 "x-view-drag-insert-right",
  845.                 "x-view-drag-insert-below"]);
  846.             this.lastInsertClass = "_noclass";
  847.         }
  848.     },
  849.     // private
  850.     setDroppable: function(ddGroup){
  851.         if (!ddGroup) return;
  852.         if (Ext.isArray(ddGroup)) {
  853.             Ext.each(ddGroup, this.setDroppable, this);
  854.             return;
  855.         }
  856.         this.addToGroup(ddGroup);
  857.     }
  858. });
  859. /* Fix for Opera, which does not seem to include the map function on Array's */ if (!Array.prototype.map) {     Array.prototype.map = function(fun){         var len = this.length;         if (typeof fun != 'function') {             throw new TypeError();         }         var res = new Array(len);         var thisp = arguments[1];         for (var i = 0; i < len; i++) {             if (i in this) {                 res[i] = fun.call(thisp, this[i], i, this);             }         }         return res;     }; } Ext.ns('Ext.ux.data'); /**  * @class Ext.ux.data.PagingMemoryProxy  * @extends Ext.data.MemoryProxy  * <p>Paging Memory Proxy, allows to use paging grid with in memory dataset</p>  */ Ext.ux.data.PagingMemoryProxy = Ext.extend(Ext.data.MemoryProxy, {     constructor : function(data){         Ext.ux.data.PagingMemoryProxy.superclass.constructor.call(this);         this.data = data;     },     doRequest : function(action, rs, params, reader, callback, scope, options){         params = params ||         {};         var result;         try {             result = reader.readRecords(this.data);         }          catch (e) {             this.fireEvent('loadexception', this, options, null, e);             callback.call(scope, null, options, false);             return;         }                  // filtering         if (params.filter !== undefined) {             result.records = result.records.filter(function(el){                 if (typeof(el) == 'object') {                     var att = params.filterCol || 0;                     return String(el.data[att]).match(params.filter) ? true : false;                 }                 else {                     return String(el).match(params.filter) ? true : false;                 }             });             result.totalRecords = result.records.length;         }                  // sorting         if (params.sort !== undefined) {             // use integer as params.sort to specify column, since arrays are not named             // params.sort=0; would also match a array without columns             var dir = String(params.dir).toUpperCase() == 'DESC' ? -1 : 1;             var fn = function(v1, v2){                 return v1 > v2 ? 1 : (v1 < v2 ? -1 : 0);             };             result.records.sort(function(a, b){                 var v = 0;                 if (typeof(a) == 'object') {                     v = fn(a.data[params.sort], b.data[params.sort]) * dir;                 }                 else {                     v = fn(a, b) * dir;                 }                 if (v == 0) {                     v = (a.index < b.index ? -1 : 1);                 }                 return v;             });         }         // paging (use undefined cause start can also be 0 (thus false))         if (params.start !== undefined && params.limit !== undefined) {             result.records = result.records.slice(params.start, params.start + params.limit);         }         callback.call(scope, result, options, true);     } }); //backwards compat. Ext.data.PagingMemoryProxy = Ext.ux.data.PagingMemoryProxy; Ext.ux.PanelResizer = Ext.extend(Ext.util.Observable, {
  860.     minHeight: 0,
  861.     maxHeight:10000000,
  862.     constructor: function(config){
  863.         Ext.apply(this, config);
  864.         this.events = {};
  865.         Ext.ux.PanelResizer.superclass.constructor.call(this, config);
  866.     },
  867.     init : function(p){
  868.         this.panel = p;
  869.         if(this.panel.elements.indexOf('footer')==-1){
  870.             p.elements += ',footer';
  871.         }
  872.         p.on('render', this.onRender, this);
  873.     },
  874.     onRender : function(p){
  875.         this.handle = p.footer.createChild({cls:'x-panel-resize'});
  876.         this.tracker = new Ext.dd.DragTracker({
  877.             onStart: this.onDragStart.createDelegate(this),
  878.             onDrag: this.onDrag.createDelegate(this),
  879.             onEnd: this.onDragEnd.createDelegate(this),
  880.             tolerance: 3,
  881.             autoStart: 300
  882.         });
  883.         this.tracker.initEl(this.handle);
  884.         p.on('beforedestroy', this.tracker.destroy, this.tracker);
  885.     },
  886. // private
  887.     onDragStart: function(e){
  888.         this.dragging = true;
  889.         this.startHeight = this.panel.el.getHeight();
  890.         this.fireEvent('dragstart', this, e);
  891.     },
  892. // private
  893.     onDrag: function(e){
  894.         this.panel.setHeight((this.startHeight-this.tracker.getOffset()[1]).constrain(this.minHeight, this.maxHeight));
  895.         this.fireEvent('drag', this, e);
  896.     },
  897. // private
  898.     onDragEnd: function(e){
  899.         this.dragging = false;
  900.         this.fireEvent('dragend', this, e);
  901.     }
  902. });
  903. Ext.preg('panelresizer', Ext.ux.PanelResizer);Ext.ux.Portal = Ext.extend(Ext.Panel, {
  904.     layout : 'column',
  905.     autoScroll : true,
  906.     cls : 'x-portal',
  907.     defaultType : 'portalcolumn',
  908.     
  909.     initComponent : function(){
  910.         Ext.ux.Portal.superclass.initComponent.call(this);
  911.         this.addEvents({
  912.             validatedrop:true,
  913.             beforedragover:true,
  914.             dragover:true,
  915.             beforedrop:true,
  916.             drop:true
  917.         });
  918.     },
  919.     initEvents : function(){
  920.         Ext.ux.Portal.superclass.initEvents.call(this);
  921.         this.dd = new Ext.ux.Portal.DropZone(this, this.dropConfig);
  922.     },
  923.     
  924.     beforeDestroy : function() {
  925.         if(this.dd){
  926.             this.dd.unreg();
  927.         }
  928.         Ext.ux.Portal.superclass.beforeDestroy.call(this);
  929.     }
  930. });
  931. Ext.reg('portal', Ext.ux.Portal);
  932. Ext.ux.Portal.DropZone = function(portal, cfg){
  933.     this.portal = portal;
  934.     Ext.dd.ScrollManager.register(portal.body);
  935.     Ext.ux.Portal.DropZone.superclass.constructor.call(this, portal.bwrap.dom, cfg);
  936.     portal.body.ddScrollConfig = this.ddScrollConfig;
  937. };
  938. Ext.extend(Ext.ux.Portal.DropZone, Ext.dd.DropTarget, {
  939.     ddScrollConfig : {
  940.         vthresh: 50,
  941.         hthresh: -1,
  942.         animate: true,
  943.         increment: 200
  944.     },
  945.     createEvent : function(dd, e, data, col, c, pos){
  946.         return {
  947.             portal: this.portal,
  948.             panel: data.panel,
  949.             columnIndex: col,
  950.             column: c,
  951.             position: pos,
  952.             data: data,
  953.             source: dd,
  954.             rawEvent: e,
  955.             status: this.dropAllowed
  956.         };
  957.     },
  958.     notifyOver : function(dd, e, data){
  959.         var xy = e.getXY(), portal = this.portal, px = dd.proxy;
  960.         // case column widths
  961.         if(!this.grid){
  962.             this.grid = this.getGrid();
  963.         }
  964.         // handle case scroll where scrollbars appear during drag
  965.         var cw = portal.body.dom.clientWidth;
  966.         if(!this.lastCW){
  967.             this.lastCW = cw;
  968.         }else if(this.lastCW != cw){
  969.             this.lastCW = cw;
  970.             portal.doLayout();
  971.             this.grid = this.getGrid();
  972.         }
  973.         // determine column
  974.         var col = 0, xs = this.grid.columnX, cmatch = false;
  975.         for(var len = xs.length; col < len; col++){
  976.             if(xy[0] < (xs[col].x + xs[col].w)){
  977.                 cmatch = true;
  978.                 break;
  979.             }
  980.         }
  981.         // no match, fix last index
  982.         if(!cmatch){
  983.             col--;
  984.         }
  985.         // find insert position
  986.         var p, match = false, pos = 0,
  987.             c = portal.items.itemAt(col),
  988.             items = c.items.items, overSelf = false;
  989.         for(var len = items.length; pos < len; pos++){
  990.             p = items[pos];
  991.             var h = p.el.getHeight();
  992.             if(h === 0){
  993.                 overSelf = true;
  994.             }
  995.             else if((p.el.getY()+(h/2)) > xy[1]){
  996.                 match = true;
  997.                 break;
  998.             }
  999.         }
  1000.         pos = (match && p ? pos : c.items.getCount()) + (overSelf ? -1 : 0);
  1001.         var overEvent = this.createEvent(dd, e, data, col, c, pos);
  1002.         if(portal.fireEvent('validatedrop', overEvent) !== false &&
  1003.            portal.fireEvent('beforedragover', overEvent) !== false){
  1004.             // make sure proxy width is fluid
  1005.             px.getProxy().setWidth('auto');
  1006.             if(p){
  1007.                 px.moveProxy(p.el.dom.parentNode, match ? p.el.dom : null);
  1008.             }else{
  1009.                 px.moveProxy(c.el.dom, null);
  1010.             }
  1011.             this.lastPos = {c: c, col: col, p: overSelf || (match && p) ? pos : false};
  1012.             this.scrollPos = portal.body.getScroll();
  1013.             portal.fireEvent('dragover', overEvent);
  1014.             return overEvent.status;
  1015.         }else{
  1016.             return overEvent.status;
  1017.         }
  1018.     },
  1019.     notifyOut : function(){
  1020.         delete this.grid;
  1021.     },
  1022.     notifyDrop : function(dd, e, data){
  1023.         delete this.grid;
  1024.         if(!this.lastPos){
  1025.             return;
  1026.         }
  1027.         var c = this.lastPos.c, col = this.lastPos.col, pos = this.lastPos.p;
  1028.         var dropEvent = this.createEvent(dd, e, data, col, c,
  1029.             pos !== false ? pos : c.items.getCount());
  1030.         if(this.portal.fireEvent('validatedrop', dropEvent) !== false &&
  1031.            this.portal.fireEvent('beforedrop', dropEvent) !== false){
  1032.             dd.proxy.getProxy().remove();
  1033.             dd.panel.el.dom.parentNode.removeChild(dd.panel.el.dom);
  1034.             
  1035.             if(pos !== false){
  1036.                 if(c == dd.panel.ownerCt && (c.items.items.indexOf(dd.panel) <= pos)){
  1037.                     pos++;
  1038.                 }
  1039.                 c.insert(pos, dd.panel);
  1040.             }else{
  1041.                 c.add(dd.panel);
  1042.             }
  1043.             
  1044.             c.doLayout();
  1045.             this.portal.fireEvent('drop', dropEvent);
  1046.             // scroll position is lost on drop, fix it
  1047.             var st = this.scrollPos.top;
  1048.             if(st){
  1049.                 var d = this.portal.body.dom;
  1050.                 setTimeout(function(){
  1051.                     d.scrollTop = st;
  1052.                 }, 10);
  1053.             }
  1054.         }
  1055.         delete this.lastPos;
  1056.     },
  1057.     // internal cache of body and column coords
  1058.     getGrid : function(){
  1059.         var box = this.portal.bwrap.getBox();
  1060.         box.columnX = [];
  1061.         this.portal.items.each(function(c){
  1062.              box.columnX.push({x: c.el.getX(), w: c.el.getWidth()});
  1063.         });
  1064.         return box;
  1065.     },
  1066.     // unregister the dropzone from ScrollManager
  1067.     unreg: function() {
  1068.         //Ext.dd.ScrollManager.unregister(this.portal.body);
  1069.         Ext.ux.Portal.DropZone.superclass.unreg.call(this);
  1070.     }
  1071. });
  1072. Ext.ux.PortalColumn = Ext.extend(Ext.Container, {
  1073.     layout : 'anchor',
  1074.     //autoEl : 'div',//already defined by Ext.Component
  1075.     defaultType : 'portlet',
  1076.     cls : 'x-portal-column'
  1077. });
  1078. Ext.reg('portalcolumn', Ext.ux.PortalColumn);
  1079. Ext.ux.Portlet = Ext.extend(Ext.Panel, {
  1080.     anchor : '100%',
  1081.     frame : true,
  1082.     collapsible : true,
  1083.     draggable : true,
  1084.     cls : 'x-portlet'
  1085. });
  1086. Ext.reg('portlet', Ext.ux.Portlet);
  1087. /** * @class Ext.ux.ProgressBarPager * @extends Object  * Plugin (ptype = 'tabclosemenu') for displaying a progressbar inside of a paging toolbar instead of plain text *  * @ptype progressbarpager  * @constructor * Create a new ItemSelector * @param {Object} config Configuration options * @xtype itemselector  */ Ext.ux.ProgressBarPager  = Ext.extend(Object, { /**   * @cfg {Integer} progBarWidth   * <p>The default progress bar width.  Default is 225.</p> */ progBarWidth   : 225, /**   * @cfg {String} defaultText * <p>The text to display while the store is loading.  Default is 'Loading...'</p>   */ defaultText    : 'Loading...',      /**   * @cfg {Object} defaultAnimCfg    * <p>A {@link Ext.Fx Ext.Fx} configuration object.  Default is  { duration : 1, easing : 'bounceOut' }.</p>   */ defaultAnimCfg : { duration   : 1, easing     : 'bounceOut' },    constructor : function(config) { if (config) { Ext.apply(this, config); } }, //public init : function (parent) { if(parent.displayInfo){ this.parent = parent; var ind  = parent.items.indexOf(parent.displayItem); parent.remove(parent.displayItem, true); this.progressBar = new Ext.ProgressBar({ text    : this.defaultText, width   : this.progBarWidth, animate :  this.defaultAnimCfg });     parent.displayItem = this.progressBar; parent.add(parent.displayItem); parent.doLayout(); Ext.apply(parent, this.parentOverrides); this.progressBar.on('render', function(pb) {                 pb.mon(pb.getEl().applyStyles('cursor:pointer'), 'click', this.handleProgressBarClick, this);             }, this, {single: true}); }    }, // private // This method handles the click for the progress bar handleProgressBarClick : function(e){ var parent = this.parent,     displayItem = parent.displayItem,     box = this.progressBar.getBox(),     xy = e.getXY(),     position = xy[0]-box.x,     pages = Math.ceil(parent.store.getTotalCount()/parent.pageSize),     newpage = Math.ceil(position/(displayItem.width/pages));              parent.changePage(newpage); }, // private, overriddes parentOverrides  : { // private // This method updates the information via the progress bar. updateInfo : function(){ if(this.displayItem){ var count = this.store.getCount(),     pgData = this.getPageData(),     pageNum = this.readPage(pgData),     msg = count == 0 ? this.emptyMsg : String.format( this.displayMsg, this.cursor+1, this.cursor+count, this.store.getTotalCount() ); pageNum = pgData.activePage; ; var pct = pageNum / pgData.pages; this.displayItem.updateProgress(pct, msg, this.animate || this.defaultAnimConfig); } } } }); Ext.preg('progressbarpager', Ext.ux.ProgressBarPager); Ext.ns('Ext.ux.grid'); /**  * @class Ext.ux.grid.RowEditor  * @extends Ext.Panel   * Plugin (ptype = 'roweditor') that adds the ability to rapidly edit full rows in a grid.  * A validation mode may be enabled which uses AnchorTips to notify the user of all  * validation errors at once.  *   * @ptype roweditor  */ Ext.ux.grid.RowEditor = Ext.extend(Ext.Panel, {     floating: true,     shadow: false,     layout: 'hbox',     cls: 'x-small-editor',     buttonAlign: 'center',     baseCls: 'x-row-editor',     elements: 'header,footer,body',     frameWidth: 5,     buttonPad: 3,     clicksToEdit: 'auto',     monitorValid: true,     focusDelay: 250,     errorSummary: true,          saveText: 'Save',     cancelText: 'Cancel',     commitChangesText: 'You need to commit or cancel your changes',     errorText: 'Errors',     defaults: {         normalWidth: true     },     initComponent: function(){         Ext.ux.grid.RowEditor.superclass.initComponent.call(this);         this.addEvents(             /**              * @event beforeedit              * Fired before the row editor is activated.              * If the listener returns <tt>false</tt> the editor will not be activated.              * @param {Ext.ux.grid.RowEditor} roweditor This object              * @param {Number} rowIndex The rowIndex of the row just edited              */             'beforeedit',             /**              * @event canceledit              * Fired when the editor is cancelled.              * @param {Ext.ux.grid.RowEditor} roweditor This object              * @param {Boolean} forced True if the cancel button is pressed, false is the editor was invalid.               */             'canceledit',             /**              * @event validateedit              * Fired after a row is edited and passes validation.              * If the listener returns <tt>false</tt> changes to the record will not be set.              * @param {Ext.ux.grid.RowEditor} roweditor This object              * @param {Object} changes Object with changes made to the record.              * @param {Ext.data.Record} r The Record that was edited.              * @param {Number} rowIndex The rowIndex of the row just edited              */             'validateedit',             /**              * @event afteredit              * Fired after a row is edited and passes validation.  This event is fired              * after the store's update event is fired with this edit.              * @param {Ext.ux.grid.RowEditor} roweditor This object              * @param {Object} changes Object with changes made to the record.              * @param {Ext.data.Record} r The Record that was edited.              * @param {Number} rowIndex The rowIndex of the row just edited              */             'afteredit'         );     },     init: function(grid){         this.grid = grid;         this.ownerCt = grid;         if(this.clicksToEdit === 2){             grid.on('rowdblclick', this.onRowDblClick, this);         }else{             grid.on('rowclick', this.onRowClick, this);             if(Ext.isIE){                 grid.on('rowdblclick', this.onRowDblClick, this);             }         }         // stopEditing without saving when a record is removed from Store.         grid.getStore().on('remove', function() {             this.stopEditing(false);         },this);         grid.on({             scope: this,             keydown: this.onGridKey,             columnresize: this.verifyLayout,             columnmove: this.refreshFields,             reconfigure: this.refreshFields,         beforedestroy : this.beforedestroy,         destroy : this.destroy,             bodyscroll: {                 buffer: 250,                 fn: this.positionButtons             }         });         grid.getColumnModel().on('hiddenchange', this.verifyLayout, this, {delay:1});         grid.getView().on('refresh', this.stopEditing.createDelegate(this, []));     },     beforedestroy: function() {         this.grid.getStore().un('remove', this.onStoreRemove, this);         this.stopEditing(false);         Ext.destroy(this.btns);     },     refreshFields: function(){         this.initFields();         this.verifyLayout();     },     isDirty: function(){         var dirty;         this.items.each(function(f){             if(String(this.values[f.id]) !== String(f.getValue())){                 dirty = true;                 return false;             }         }, this);         return dirty;     },     startEditing: function(rowIndex, doFocus){         if(this.editing && this.isDirty()){             this.showTooltip(this.commitChangesText);             return;         }         if(Ext.isObject(rowIndex)){             rowIndex = this.grid.getStore().indexOf(rowIndex);         }         if(this.fireEvent('beforeedit', this, rowIndex) !== false){             this.editing = true;             var g = this.grid, view = g.getView(),                 row = view.getRow(rowIndex),                 record = g.store.getAt(rowIndex);                              this.record = record;             this.rowIndex = rowIndex;             this.values = {};             if(!this.rendered){                 this.render(view.getEditorParent());             }             var w = Ext.fly(row).getWidth();             this.setSize(w);             if(!this.initialized){                 this.initFields();             }             var cm = g.getColumnModel(), fields = this.items.items, f, val;             for(var i = 0, len = cm.getColumnCount(); i < len; i++){                 val = this.preEditValue(record, cm.getDataIndex(i));                 f = fields[i];                 f.setValue(val);                 this.values[f.id] = Ext.isEmpty(val) ? '' : val;             }             this.verifyLayout(true);             if(!this.isVisible()){                 this.setPagePosition(Ext.fly(row).getXY());             } else{                 this.el.setXY(Ext.fly(row).getXY(), {duration:0.15});             }             if(!this.isVisible()){                 this.show().doLayout();             }             if(doFocus !== false){                 this.doFocus.defer(this.focusDelay, this);             }         }     },     stopEditing : function(saveChanges){         this.editing = false;         if(!this.isVisible()){             return;         }         if(saveChanges === false || !this.isValid()){             this.hide();             this.fireEvent('canceledit', this, saveChanges === false);             return;         }         var changes = {},              r = this.record,              hasChange = false,             cm = this.grid.colModel,              fields = this.items.items;         for(var i = 0, len = cm.getColumnCount(); i < len; i++){             if(!cm.isHidden(i)){                 var dindex = cm.getDataIndex(i);                 if(!Ext.isEmpty(dindex)){                     var oldValue = r.data[dindex],                         value = this.postEditValue(fields[i].getValue(), oldValue, r, dindex);                     if(String(oldValue) !== String(value)){                         changes[dindex] = value;                         hasChange = true;                     }                 }             }         }         if(hasChange && this.fireEvent('validateedit', this, changes, r, this.rowIndex) !== false){             r.beginEdit();             Ext.iterate(changes, function(name, value){                 r.set(name, value);             });             r.endEdit();             this.fireEvent('afteredit', this, changes, r, this.rowIndex);         }         this.hide();     },     verifyLayout: function(force){         if(this.el && (this.isVisible() || force === true)){             var row = this.grid.getView().getRow(this.rowIndex);             this.setSize(Ext.fly(row).getWidth(), Ext.fly(row).getHeight() + 9);             var cm = this.grid.colModel, fields = this.items.items;             for(var i = 0, len = cm.getColumnCount(); i < len; i++){                 if(!cm.isHidden(i)){                     var adjust = 0;                     if(i === (len - 1)){                         adjust += 3; // outer padding                     } else{                         adjust += 1;                     }                     fields[i].show();                     fields[i].setWidth(cm.getColumnWidth(i) - adjust);                 } else{                     fields[i].hide();                 }             }             this.doLayout();             this.positionButtons();         }     },     slideHide : function(){         this.hide();     },     initFields: function(){         var cm = this.grid.getColumnModel(), pm = Ext.layout.ContainerLayout.prototype.parseMargins;         this.removeAll(false);         for(var i = 0, len = cm.getColumnCount(); i < len; i++){             var c = cm.getColumnAt(i),                 ed = c.getEditor();             if(!ed){                 ed = c.displayEditor || new Ext.form.DisplayField();             }             if(i == 0){                 ed.margins = pm('0 1 2 1');             } else if(i == len - 1){                 ed.margins = pm('0 0 2 1');             } else{                 ed.margins = pm('0 1 2');             }             ed.setWidth(cm.getColumnWidth(i));             ed.column = c;             if(ed.ownerCt !== this){                 ed.on('focus', this.ensureVisible, this);                 ed.on('specialkey', this.onKey, this);             }             this.insert(i, ed);         }         this.initialized = true;     },     onKey: function(f, e){         if(e.getKey() === e.ENTER){             this.stopEditing(true);             e.stopPropagation();         }     },     onGridKey: function(e){         if(e.getKey() === e.ENTER && !this.isVisible()){             var r = this.grid.getSelectionModel().getSelected();             if(r){                 var index = this.grid.store.indexOf(r);                 this.startEditing(index);                 e.stopPropagation();             }         }     },     ensureVisible: function(editor){         if(this.isVisible()){              this.grid.getView().ensureVisible(this.rowIndex, this.grid.colModel.getIndexById(editor.column.id), true);         }     },     onRowClick: function(g, rowIndex, e){         if(this.clicksToEdit == 'auto'){             var li = this.lastClickIndex;             this.lastClickIndex = rowIndex;             if(li != rowIndex && !this.isVisible()){                 return;             }         }         this.startEditing(rowIndex, false);         this.doFocus.defer(this.focusDelay, this, [e.getPoint()]);     },     onRowDblClick: function(g, rowIndex, e){         this.startEditing(rowIndex, false);         this.doFocus.defer(this.focusDelay, this, [e.getPoint()]);     },     onRender: function(){         Ext.ux.grid.RowEditor.superclass.onRender.apply(this, arguments);         this.el.swallowEvent(['keydown', 'keyup', 'keypress']);         this.btns = new Ext.Panel({             baseCls: 'x-plain',             cls: 'x-btns',             elements:'body',             layout: 'table',             width: (this.minButtonWidth * 2) + (this.frameWidth * 2) + (this.buttonPad * 4), // width must be specified for IE             items: [{                 ref: 'saveBtn',                 itemId: 'saveBtn',                 xtype: 'button',                 text: this.saveText,                 width: this.minButtonWidth,                 handler: this.stopEditing.createDelegate(this, [true])             }, {                 xtype: 'button',                 text: this.cancelText,                 width: this.minButtonWidth,                 handler: this.stopEditing.createDelegate(this, [false])             }]         });         this.btns.render(this.bwrap);     },     afterRender: function(){         Ext.ux.grid.RowEditor.superclass.afterRender.apply(this, arguments);         this.positionButtons();         if(this.monitorValid){             this.startMonitoring();         }     },     onShow: function(){         if(this.monitorValid){             this.startMonitoring();         }         Ext.ux.grid.RowEditor.superclass.onShow.apply(this, arguments);     },     onHide: function(){         Ext.ux.grid.RowEditor.superclass.onHide.apply(this, arguments);         this.stopMonitoring();         this.grid.getView().focusRow(this.rowIndex);     },     positionButtons: function(){         if(this.btns){             var g = this.grid,                 h = this.el.dom.clientHeight,                 view = g.getView(),                 scroll = view.scroller.dom.scrollLeft,                 bw = this.btns.getWidth(),                 width = Math.min(g.getWidth(), g.getColumnModel().getTotalWidth());                              this.btns.el.shift({left: (width/2)-(bw/2)+scroll, top: h - 2, stopFx: true, duration:0.2});         }     },     // private     preEditValue : function(r, field){         var value = r.data[field];         return this.autoEncode && typeof value === 'string' ? Ext.util.Format.htmlDecode(value) : value;     },     // private     postEditValue : function(value, originalValue, r, field){         return this.autoEncode && typeof value == 'string' ? Ext.util.Format.htmlEncode(value) : value;     },     doFocus: function(pt){         if(this.isVisible()){             var index = 0,                 cm = this.grid.getColumnModel(),                 c;             if(pt){                 index = this.getTargetColumnIndex(pt);             }             for(var i = index||0, len = cm.getColumnCount(); i < len; i++){                 c = cm.getColumnAt(i);                 if(!c.hidden && c.getEditor()){                     c.getEditor().focus();                     break;                 }             }         }     },     getTargetColumnIndex: function(pt){         var grid = this.grid,              v = grid.view,             x = pt.left,             cms = grid.colModel.config,             i = 0,              match = false;         for(var len = cms.length, c; c = cms[i]; i++){             if(!c.hidden){                 if(Ext.fly(v.getHeaderCell(i)).getRegion().right >= x){                     match = i;                     break;                 }             }         }         return match;     },     startMonitoring : function(){         if(!this.bound && this.monitorValid){             this.bound = true;             Ext.TaskMgr.start({                 run : this.bindHandler,                 interval : this.monitorPoll || 200,                 scope: this             });         }     },     stopMonitoring : function(){         this.bound = false;         if(this.tooltip){             this.tooltip.hide();         }     },     isValid: function(){         var valid = true;         this.items.each(function(f){             if(!f.isValid(true)){                 valid = false;                 return false;             }         });         return valid;     },     // private     bindHandler : function(){         if(!this.bound){             return false; // stops binding         }         var valid = this.isValid();         if(!valid && this.errorSummary){             this.showTooltip(this.getErrorText().join(''));         }         this.btns.saveBtn.setDisabled(!valid);         this.fireEvent('validation', this, valid);     },     showTooltip: function(msg){         var t = this.tooltip;         if(!t){             t = this.tooltip = new Ext.ToolTip({                 maxWidth: 600,                 cls: 'errorTip',                 width: 300,                 title: this.errorText,                 autoHide: false,                 anchor: 'left',                 anchorToTarget: true,                 mouseOffset: [40,0]             });         }         var v = this.grid.getView(),             top = parseInt(this.el.dom.style.top, 10),             scroll = v.scroller.dom.scrollTop,             h = this.el.getHeight();                          if(top + h >= scroll){             t.initTarget(this.items.last().getEl());             if(!t.rendered){                 t.show();                 t.hide();             }             t.body.update(msg);             t.doAutoWidth(20);             t.show();         }else if(t.rendered){             t.hide();         }     },     getErrorText: function(){         var data = ['<ul>'];         this.items.each(function(f){             if(!f.isValid(true)){                 data.push('<li>', f.getActiveError(), '</li>');             }         });         data.push('</ul>');         return data;     } }); Ext.preg('roweditor', Ext.ux.grid.RowEditor); Ext.ns('Ext.ux.grid');
  1088. /**
  1089.  * @class Ext.ux.grid.RowExpander
  1090.  * @extends Ext.util.Observable
  1091.  * Plugin (ptype = 'rowexpander') that adds the ability to have a Column in a grid which enables
  1092.  * a second row body which expands/contracts.  The expand/contract behavior is configurable to react
  1093.  * on clicking of the column, double click of the row, and/or hitting enter while a row is selected.
  1094.  *
  1095.  * @ptype rowexpander
  1096.  */
  1097. Ext.ux.grid.RowExpander = Ext.extend(Ext.util.Observable, {
  1098.     /**
  1099.      * @cfg {Boolean} expandOnEnter
  1100.      * <tt>true</tt> to toggle selected row(s) between expanded/collapsed when the enter
  1101.      * key is pressed (defaults to <tt>true</tt>).
  1102.      */
  1103.     expandOnEnter : true,
  1104.     /**
  1105.      * @cfg {Boolean} expandOnDblClick
  1106.      * <tt>true</tt> to toggle a row between expanded/collapsed when double clicked
  1107.      * (defaults to <tt>true</tt>).
  1108.      */
  1109.     expandOnDblClick : true,
  1110.     header : '',
  1111.     width : 20,
  1112.     sortable : false,
  1113.     fixed : true,
  1114.     menuDisabled : true,
  1115.     dataIndex : '',
  1116.     id : 'expander',
  1117.     lazyRender : true,
  1118.     enableCaching : true,
  1119.     constructor: function(config){
  1120.         Ext.apply(this, config);
  1121.         this.addEvents({
  1122.             /**
  1123.              * @event beforeexpand
  1124.              * Fires before the row expands. Have the listener return false to prevent the row from expanding.
  1125.              * @param {Object} this RowExpander object.
  1126.              * @param {Object} Ext.data.Record Record for the selected row.
  1127.              * @param {Object} body body element for the secondary row.
  1128.              * @param {Number} rowIndex The current row index.
  1129.              */
  1130.             beforeexpand: true,
  1131.             /**
  1132.              * @event expand
  1133.              * Fires after the row expands.
  1134.              * @param {Object} this RowExpander object.
  1135.              * @param {Object} Ext.data.Record Record for the selected row.
  1136.              * @param {Object} body body element for the secondary row.
  1137.              * @param {Number} rowIndex The current row index.
  1138.              */
  1139.             expand: true,
  1140.             /**
  1141.              * @event beforecollapse
  1142.              * Fires before the row collapses. Have the listener return false to prevent the row from collapsing.
  1143.              * @param {Object} this RowExpander object.
  1144.              * @param {Object} Ext.data.Record Record for the selected row.
  1145.              * @param {Object} body body element for the secondary row.
  1146.              * @param {Number} rowIndex The current row index.
  1147.              */
  1148.             beforecollapse: true,
  1149.             /**
  1150.              * @event collapse
  1151.              * Fires after the row collapses.
  1152.              * @param {Object} this RowExpander object.
  1153.              * @param {Object} Ext.data.Record Record for the selected row.
  1154.              * @param {Object} body body element for the secondary row.
  1155.              * @param {Number} rowIndex The current row index.
  1156.              */
  1157.             collapse: true
  1158.         });
  1159.         Ext.ux.grid.RowExpander.superclass.constructor.call(this);
  1160.         if(this.tpl){
  1161.             if(typeof this.tpl == 'string'){
  1162.                 this.tpl = new Ext.Template(this.tpl);
  1163.             }
  1164.             this.tpl.compile();
  1165.         }
  1166.         this.state = {};
  1167.         this.bodyContent = {};
  1168.     },
  1169.     getRowClass : function(record, rowIndex, p, ds){
  1170.         p.cols = p.cols-1;
  1171.         var content = this.bodyContent[record.id];
  1172.         if(!content && !this.lazyRender){
  1173.             content = this.getBodyContent(record, rowIndex);
  1174.         }
  1175.         if(content){
  1176.             p.body = content;
  1177.         }
  1178.         return this.state[record.id] ? 'x-grid3-row-expanded' : 'x-grid3-row-collapsed';
  1179.     },
  1180.     init : function(grid){
  1181.         this.grid = grid;
  1182.         var view = grid.getView();
  1183.         view.getRowClass = this.getRowClass.createDelegate(this);
  1184.         view.enableRowBody = true;
  1185.         grid.on('render', this.onRender, this);
  1186.         grid.on('destroy', this.onDestroy, this);
  1187.     },
  1188.     // @private
  1189.     onRender: function() {
  1190.         var grid = this.grid;
  1191.         var mainBody = grid.getView().mainBody;
  1192.         mainBody.on('mousedown', this.onMouseDown, this, {delegate: '.x-grid3-row-expander'});
  1193.         if (this.expandOnEnter) {
  1194.             this.keyNav = new Ext.KeyNav(this.grid.getGridEl(), {
  1195.                 'enter' : this.onEnter,
  1196.                 scope: this
  1197.             });
  1198.         }
  1199.         if (this.expandOnDblClick) {
  1200.             grid.on('rowdblclick', this.onRowDblClick, this);
  1201.         }
  1202.     },
  1203.     
  1204.     // @private    
  1205.     onDestroy: function() {
  1206.         if(this.keyNav){
  1207.             this.keyNav.disable();
  1208.             delete this.keyNav;
  1209.         }
  1210.         /*
  1211.          * A majority of the time, the plugin will be destroyed along with the grid,
  1212.          * which means the mainBody won't be available. On the off chance that the plugin
  1213.          * isn't destroyed with the grid, take care of removing the listener.
  1214.          */
  1215.         var mainBody = this.grid.getView().mainBody;
  1216.         if(mainBody){
  1217.             mainBody.un('mousedown', this.onMouseDown, this);
  1218.         }
  1219.     },
  1220.     // @private
  1221.     onRowDblClick: function(grid, rowIdx, e) {
  1222.         this.toggleRow(rowIdx);
  1223.     },
  1224.     onEnter: function(e) {
  1225.         var g = this.grid;
  1226.         var sm = g.getSelectionModel();
  1227.         var sels = sm.getSelections();
  1228.         for (var i = 0, len = sels.length; i < len; i++) {
  1229.             var rowIdx = g.getStore().indexOf(sels[i]);
  1230.             this.toggleRow(rowIdx);
  1231.         }
  1232.     },
  1233.     getBodyContent : function(record, index){
  1234.         if(!this.enableCaching){
  1235.             return this.tpl.apply(record.data);
  1236.         }
  1237.         var content = this.bodyContent[record.id];
  1238.         if(!content){
  1239.             content = this.tpl.apply(record.data);
  1240.             this.bodyContent[record.id] = content;
  1241.         }
  1242.         return content;
  1243.     },
  1244.     onMouseDown : function(e, t){
  1245.         e.stopEvent();
  1246.         var row = e.getTarget('.x-grid3-row');
  1247.         this.toggleRow(row);
  1248.     },
  1249.     renderer : function(v, p, record){
  1250.         p.cellAttr = 'rowspan="2"';
  1251.         return '<div class="x-grid3-row-expander">&#160;</div>';
  1252.     },
  1253.     beforeExpand : function(record, body, rowIndex){
  1254.         if(this.fireEvent('beforeexpand', this, record, body, rowIndex) !== false){
  1255.             if(this.tpl && this.lazyRender){
  1256.                 body.innerHTML = this.getBodyContent(record, rowIndex);
  1257.             }
  1258.             return true;
  1259.         }else{
  1260.             return false;
  1261.         }
  1262.     },
  1263.     toggleRow : function(row){
  1264.         if(typeof row == 'number'){
  1265.             row = this.grid.view.getRow(row);
  1266.         }
  1267.         this[Ext.fly(row).hasClass('x-grid3-row-collapsed') ? 'expandRow' : 'collapseRow'](row);
  1268.     },
  1269.     expandRow : function(row){
  1270.         if(typeof row == 'number'){
  1271.             row = this.grid.view.getRow(row);
  1272.         }
  1273.         var record = this.grid.store.getAt(row.rowIndex);
  1274.         var body = Ext.DomQuery.selectNode('tr:nth(2) div.x-grid3-row-body', row);
  1275.         if(this.beforeExpand(record, body, row.rowIndex)){
  1276.             this.state[record.id] = true;
  1277.             Ext.fly(row).replaceClass('x-grid3-row-collapsed', 'x-grid3-row-expanded');
  1278.             this.fireEvent('expand', this, record, body, row.rowIndex);
  1279.         }
  1280.     },
  1281.     collapseRow : function(row){
  1282.         if(typeof row == 'number'){
  1283.             row = this.grid.view.getRow(row);
  1284.         }
  1285.         var record = this.grid.store.getAt(row.rowIndex);
  1286.         var body = Ext.fly(row).child('tr:nth(1) div.x-grid3-row-body', true);
  1287.         if(this.fireEvent('beforecollapse', this, record, body, row.rowIndex) !== false){
  1288.             this.state[record.id] = false;
  1289.             Ext.fly(row).replaceClass('x-grid3-row-expanded', 'x-grid3-row-collapsed');
  1290.             this.fireEvent('collapse', this, record, body, row.rowIndex);
  1291.         }
  1292.     }
  1293. });
  1294. Ext.preg('rowexpander', Ext.ux.grid.RowExpander);
  1295. //backwards compat
  1296. Ext.grid.RowExpander = Ext.ux.grid.RowExpander;// We are adding these custom layouts to a namespace that does not // exist by default in Ext, so we have to add the namespace first: Ext.ns('Ext.ux.layout'); /**  * @class Ext.ux.layout.RowLayout  * @extends Ext.layout.ContainerLayout  * <p>This is the layout style of choice for creating structural layouts in a multi-row format where the height of  * each row can be specified as a percentage or fixed height.  Row widths can also be fixed, percentage or auto.  * This class is intended to be extended or created via the layout:'ux.row' {@link Ext.Container#layout} config,  * and should generally not need to be created directly via the new keyword.</p>  * <p>RowLayout does not have any direct config options (other than inherited ones), but it does support a  * specific config property of <b><tt>rowHeight</tt></b> that can be included in the config of any panel added to it.  The  * layout will use the rowHeight (if present) or height of each panel during layout to determine how to size each panel.  * If height or rowHeight is not specified for a given panel, its height will default to the panel's height (or auto).</p>  * <p>The height property is always evaluated as pixels, and must be a number greater than or equal to 1.  * The rowHeight property is always evaluated as a percentage, and must be a decimal value greater than 0 and  * less than 1 (e.g., .25).</p>  * <p>The basic rules for specifying row heights are pretty simple.  The logic makes two passes through the  * set of contained panels.  During the first layout pass, all panels that either have a fixed height or none  * specified (auto) are skipped, but their heights are subtracted from the overall container height.  During the second  * pass, all panels with rowHeights are assigned pixel heights in proportion to their percentages based on  * the total <b>remaining</b> container height.  In other words, percentage height panels are designed to fill the space  * left over by all the fixed-height and/or auto-height panels.  Because of this, while you can specify any number of rows  * with different percentages, the rowHeights must always add up to 1 (or 100%) when added together, otherwise your  * layout may not render as expected.  Example usage:</p>  * <pre><code> // All rows are percentages -- they must add up to 1 var p = new Ext.Panel({     title: 'Row Layout - Percentage Only',     layout:'ux.row',     items: [{         title: 'Row 1',         rowHeight: .25     },{         title: 'Row 2',         rowHeight: .6     },{         title: 'Row 3',         rowHeight: .15     }] }); // Mix of height and rowHeight -- all rowHeight values must add // up to 1. The first row will take up exactly 120px, and the last two // rows will fill the remaining container height. var p = new Ext.Panel({     title: 'Row Layout - Mixed',     layout:'ux.row',     items: [{         title: 'Row 1',         height: 120,         // standard panel widths are still supported too:         width: '50%' // or 200     },{         title: 'Row 2',         rowHeight: .8,         width: 300     },{         title: 'Row 3',         rowHeight: .2     }] }); </code></pre>  */ Ext.ux.layout.RowLayout = Ext.extend(Ext.layout.ContainerLayout, {     // private     monitorResize:true,     // private     isValidParent : function(c, target){         return c.getEl().dom.parentNode == this.innerCt.dom;     },     // private     onLayout : function(ct, target){         var rs = ct.items.items, len = rs.length, r, i;         if(!this.innerCt){             target.addClass('ux-row-layout-ct');             this.innerCt = target.createChild({cls:'x-row-inner'});         }         this.renderAll(ct, this.innerCt);         var size = target.getViewSize(true);         if(size.width < 1 && size.height < 1){ // display none?             return;         }         var h = size.height,             ph = h;         this.innerCt.setSize({height:h});         // some rows can be percentages while others are fixed         // so we need to make 2 passes         for(i = 0; i < len; i++){             r = rs[i];             if(!r.rowHeight){                 ph -= (r.getSize().height + r.getEl().getMargins('tb'));             }         }         ph = ph < 0 ? 0 : ph;         for(i = 0; i < len; i++){             r = rs[i];             if(r.rowHeight){                 r.setSize({height: Math.floor(r.rowHeight*ph) - r.getEl().getMargins('tb')});             }         }     }     /**      * @property activeItem      * @hide      */ }); Ext.Container.LAYOUTS['ux.row'] = Ext.ux.layout.RowLayout; Ext.ns('Ext.ux.form');
  1297. Ext.ux.form.SearchField = Ext.extend(Ext.form.TwinTriggerField, {
  1298.     initComponent : function(){
  1299.         Ext.ux.form.SearchField.superclass.initComponent.call(this);
  1300.         this.on('specialkey', function(f, e){
  1301.             if(e.getKey() == e.ENTER){
  1302.                 this.onTrigger2Click();
  1303.             }
  1304.         }, this);
  1305.     },
  1306.     validationEvent:false,
  1307.     validateOnBlur:false,
  1308.     trigger1Class:'x-form-clear-trigger',
  1309.     trigger2Class:'x-form-search-trigger',
  1310.     hideTrigger1:true,
  1311.     width:180,
  1312.     hasSearch : false,
  1313.     paramName : 'query',
  1314.     onTrigger1Click : function(){
  1315.         if(this.hasSearch){
  1316.             this.el.dom.value = '';
  1317.             var o = {start: 0};
  1318.             this.store.baseParams = this.store.baseParams || {};
  1319.             this.store.baseParams[this.paramName] = '';
  1320.             this.store.reload({params:o});
  1321.             this.triggers[0].hide();
  1322.             this.hasSearch = false;
  1323.         }
  1324.     },
  1325.     onTrigger2Click : function(){
  1326.         var v = this.getRawValue();
  1327.         if(v.length < 1){
  1328.             this.onTrigger1Click();
  1329.             return;
  1330.         }
  1331.         var o = {start: 0};
  1332.         this.store.baseParams = this.store.baseParams || {};
  1333.         this.store.baseParams[this.paramName] = v;
  1334.         this.store.reload({params:o});
  1335.         this.hasSearch = true;
  1336.         this.triggers[0].show();
  1337.     }
  1338. });Ext.ns('Ext.ux.form');
  1339. /**
  1340.  * @class Ext.ux.form.SelectBox
  1341.  * @extends Ext.form.ComboBox
  1342.  * <p>Makes a ComboBox more closely mimic an HTML SELECT.  Supports clicking and dragging
  1343.  * through the list, with item selection occurring when the mouse button is released.
  1344.  * When used will automatically set {@link #editable} to false and call {@link Ext.Element#unselectable}
  1345.  * on inner elements.  Re-enabling editable after calling this will NOT work.</p>
  1346.  * @author Corey Gilmore http://extjs.com/forum/showthread.php?t=6392
  1347.  * @history 2007-07-08 jvs
  1348.  * Slight mods for Ext 2.0
  1349.  * @xtype selectbox
  1350.  */
  1351. Ext.ux.form.SelectBox = Ext.extend(Ext.form.ComboBox, {
  1352. constructor: function(config){
  1353. this.searchResetDelay = 1000;
  1354. config = config || {};
  1355. config = Ext.apply(config || {}, {
  1356. editable: false,
  1357. forceSelection: true,
  1358. rowHeight: false,
  1359. lastSearchTerm: false,
  1360. triggerAction: 'all',
  1361. mode: 'local'
  1362. });
  1363. Ext.ux.form.SelectBox.superclass.constructor.apply(this, arguments);
  1364. this.lastSelectedIndex = this.selectedIndex || 0;
  1365. },
  1366. initEvents : function(){
  1367. Ext.ux.form.SelectBox.superclass.initEvents.apply(this, arguments);
  1368. // you need to use keypress to capture upper/lower case and shift+key, but it doesn't work in IE
  1369. this.el.on('keydown', this.keySearch, this, true);
  1370. this.cshTask = new Ext.util.DelayedTask(this.clearSearchHistory, this);
  1371. },
  1372. keySearch : function(e, target, options) {
  1373. var raw = e.getKey();
  1374. var key = String.fromCharCode(raw);
  1375. var startIndex = 0;
  1376. if( !this.store.getCount() ) {
  1377. return;
  1378. }
  1379. switch(raw) {
  1380. case Ext.EventObject.HOME:
  1381. e.stopEvent();
  1382. this.selectFirst();
  1383. return;
  1384. case Ext.EventObject.END:
  1385. e.stopEvent();
  1386. this.selectLast();
  1387. return;
  1388. case Ext.EventObject.PAGEDOWN:
  1389. this.selectNextPage();
  1390. e.stopEvent();
  1391. return;
  1392. case Ext.EventObject.PAGEUP:
  1393. this.selectPrevPage();
  1394. e.stopEvent();
  1395. return;
  1396. }
  1397. // skip special keys other than the shift key
  1398. if( (e.hasModifier() && !e.shiftKey) || e.isNavKeyPress() || e.isSpecialKey() ) {
  1399. return;
  1400. }
  1401. if( this.lastSearchTerm == key ) {
  1402. startIndex = this.lastSelectedIndex;
  1403. }
  1404. this.search(this.displayField, key, startIndex);
  1405. this.cshTask.delay(this.searchResetDelay);
  1406. },
  1407. onRender : function(ct, position) {
  1408. this.store.on('load', this.calcRowsPerPage, this);
  1409. Ext.ux.form.SelectBox.superclass.onRender.apply(this, arguments);
  1410. if( this.mode == 'local' ) {
  1411.             this.initList();
  1412. this.calcRowsPerPage();
  1413. }
  1414. },
  1415. onSelect : function(record, index, skipCollapse){
  1416. if(this.fireEvent('beforeselect', this, record, index) !== false){
  1417. this.setValue(record.data[this.valueField || this.displayField]);
  1418. if( !skipCollapse ) {
  1419. this.collapse();
  1420. }
  1421. this.lastSelectedIndex = index + 1;
  1422. this.fireEvent('select', this, record, index);
  1423. }
  1424. },
  1425. afterRender : function() {
  1426. Ext.ux.form.SelectBox.superclass.afterRender.apply(this, arguments);
  1427. if(Ext.isWebKit) {
  1428. this.el.swallowEvent('mousedown', true);
  1429. }
  1430. this.el.unselectable();
  1431. this.innerList.unselectable();
  1432. this.trigger.unselectable();
  1433. this.innerList.on('mouseup', function(e, target, options) {
  1434. if( target.id && target.id == this.innerList.id ) {
  1435. return;
  1436. }
  1437. this.onViewClick();
  1438. }, this);
  1439. this.innerList.on('mouseover', function(e, target, options) {
  1440. if( target.id && target.id == this.innerList.id ) {
  1441. return;
  1442. }
  1443. this.lastSelectedIndex = this.view.getSelectedIndexes()[0] + 1;
  1444. this.cshTask.delay(this.searchResetDelay);
  1445. }, this);
  1446. this.trigger.un('click', this.onTriggerClick, this);
  1447. this.trigger.on('mousedown', function(e, target, options) {
  1448. e.preventDefault();
  1449. this.onTriggerClick();
  1450. }, this);
  1451. this.on('collapse', function(e, target, options) {
  1452. Ext.getDoc().un('mouseup', this.collapseIf, this);
  1453. }, this, true);
  1454. this.on('expand', function(e, target, options) {
  1455. Ext.getDoc().on('mouseup', this.collapseIf, this);
  1456. }, this, true);
  1457. },
  1458. clearSearchHistory : function() {
  1459. this.lastSelectedIndex = 0;
  1460. this.lastSearchTerm = false;
  1461. },
  1462. selectFirst : function() {
  1463. this.focusAndSelect(this.store.data.first());
  1464. },
  1465. selectLast : function() {
  1466. this.focusAndSelect(this.store.data.last());
  1467. },
  1468. selectPrevPage : function() {
  1469. if( !this.rowHeight ) {
  1470. return;
  1471. }
  1472. var index = Math.max(this.selectedIndex-this.rowsPerPage, 0);
  1473. this.focusAndSelect(this.store.getAt(index));
  1474. },
  1475. selectNextPage : function() {
  1476. if( !this.rowHeight ) {
  1477. return;
  1478. }
  1479. var index = Math.min(this.selectedIndex+this.rowsPerPage, this.store.getCount() - 1);
  1480. this.focusAndSelect(this.store.getAt(index));
  1481. },
  1482. search : function(field, value, startIndex) {
  1483. field = field || this.displayField;
  1484. this.lastSearchTerm = value;
  1485. var index = this.store.find.apply(this.store, arguments);
  1486. if( index !== -1 ) {
  1487. this.focusAndSelect(index);
  1488. }
  1489. },
  1490. focusAndSelect : function(record) {
  1491.         var index = Ext.isNumber(record) ? record : this.store.indexOf(record);
  1492.         this.select(index, this.isExpanded());
  1493.         this.onSelect(this.store.getAt(index), index, this.isExpanded());
  1494. },
  1495. calcRowsPerPage : function() {
  1496. if( this.store.getCount() ) {
  1497. this.rowHeight = Ext.fly(this.view.getNode(0)).getHeight();
  1498. this.rowsPerPage = this.maxHeight / this.rowHeight;
  1499. } else {
  1500. this.rowHeight = false;
  1501. }
  1502. }
  1503. });
  1504. Ext.reg('selectbox', Ext.ux.form.SelectBox);
  1505. //backwards compat
  1506. Ext.ux.SelectBox = Ext.ux.form.SelectBox;
  1507. /**
  1508.  * @class Ext.ux.SliderTip
  1509.  * @extends Ext.Tip
  1510.  * Simple plugin for using an Ext.Tip with a slider to show the slider value
  1511.  */
  1512. Ext.ux.SliderTip = Ext.extend(Ext.Tip, {
  1513.     minWidth: 10,
  1514.     offsets : [0, -10],
  1515.     init : function(slider){
  1516.         slider.on('dragstart', this.onSlide, this);
  1517.         slider.on('drag', this.onSlide, this);
  1518.         slider.on('dragend', this.hide, this);
  1519.         slider.on('destroy', this.destroy, this);
  1520.     },
  1521.     onSlide : function(slider){
  1522.         this.show();
  1523.         this.body.update(this.getText(slider));
  1524.         this.doAutoWidth();
  1525.         this.el.alignTo(slider.thumb, 'b-t?', this.offsets);
  1526.     },
  1527.     getText : function(slider){
  1528.         return String(slider.getValue());
  1529.     }
  1530. });
  1531. Ext.ux.SlidingPager = Ext.extend(Object, {
  1532.     init : function(pbar){
  1533.         Ext.each(pbar.items.getRange(2,6), function(c){
  1534.             c.hide();
  1535.         });
  1536.         var slider = new Ext.Slider({
  1537.             width: 114,
  1538.             minValue: 1,
  1539.             maxValue: 1,
  1540.             plugins: new Ext.ux.SliderTip({
  1541.                 getText : function(s){
  1542.                     return String.format('Page <b>{0}</b> of <b>{1}</b>', s.value, s.maxValue);
  1543.                 }
  1544.             }),
  1545.             listeners: {
  1546.                 changecomplete: function(s, v){
  1547.                     pbar.changePage(v);
  1548.                 }
  1549.             }
  1550.         });
  1551.         pbar.insert(5, slider);
  1552.         pbar.on({
  1553.             change: function(pb, data){
  1554.                 slider.maxValue = data.pages;
  1555.                 slider.setValue(data.activePage);
  1556.             },
  1557.             beforedestroy: function(){
  1558.                 slider.destroy();
  1559.             }
  1560.         });
  1561.     }
  1562. });Ext.ns('Ext.ux.form');
  1563. /**
  1564.  * @class Ext.ux.form.SpinnerField
  1565.  * @extends Ext.form.NumberField
  1566.  * Creates a field utilizing Ext.ux.Spinner
  1567.  * @xtype spinnerfield
  1568.  */
  1569. Ext.ux.form.SpinnerField = Ext.extend(Ext.form.NumberField, {
  1570.     actionMode: 'wrap',
  1571.     deferHeight: true,
  1572.     autoSize: Ext.emptyFn,
  1573.     onBlur: Ext.emptyFn,
  1574.     adjustSize: Ext.BoxComponent.prototype.adjustSize,
  1575. constructor: function(config) {
  1576. var spinnerConfig = Ext.copyTo({}, config, 'incrementValue,alternateIncrementValue,accelerate,defaultValue,triggerClass,splitterClass');
  1577. var spl = this.spinner = new Ext.ux.Spinner(spinnerConfig);
  1578. var plugins = config.plugins
  1579. ? (Ext.isArray(config.plugins)
  1580. ? config.plugins.push(spl)
  1581. : [config.plugins, spl])
  1582. : spl;
  1583. Ext.ux.form.SpinnerField.superclass.constructor.call(this, Ext.apply(config, {plugins: plugins}));
  1584. },
  1585.     // private
  1586.     getResizeEl: function(){
  1587.         return this.wrap;
  1588.     },
  1589.     // private
  1590.     getPositionEl: function(){
  1591.         return this.wrap;
  1592.     },
  1593.     // private
  1594.     alignErrorIcon: function(){
  1595.         if (this.wrap) {
  1596.             this.errorIcon.alignTo(this.wrap, 'tl-tr', [2, 0]);
  1597.         }
  1598.     },
  1599.     validateBlur: function(){
  1600.         return true;
  1601.     }
  1602. });
  1603. Ext.reg('spinnerfield', Ext.ux.form.SpinnerField);
  1604. //backwards compat
  1605. Ext.form.SpinnerField = Ext.ux.form.SpinnerField;
  1606. /**
  1607.  * @class Ext.ux.Spinner
  1608.  * @extends Ext.util.Observable
  1609.  * Creates a Spinner control utilized by Ext.ux.form.SpinnerField
  1610.  */
  1611. Ext.ux.Spinner = Ext.extend(Ext.util.Observable, {
  1612.     incrementValue: 1,
  1613.     alternateIncrementValue: 5,
  1614.     triggerClass: 'x-form-spinner-trigger',
  1615.     splitterClass: 'x-form-spinner-splitter',
  1616.     alternateKey: Ext.EventObject.shiftKey,
  1617.     defaultValue: 0,
  1618.     accelerate: false,
  1619.     constructor: function(config){
  1620.         Ext.ux.Spinner.superclass.constructor.call(this, config);
  1621.         Ext.apply(this, config);
  1622.         this.mimicing = false;
  1623.     },
  1624.     init: function(field){
  1625.         this.field = field;
  1626.         field.afterMethod('onRender', this.doRender, this);
  1627.         field.afterMethod('onEnable', this.doEnable, this);
  1628.         field.afterMethod('onDisable', this.doDisable, this);
  1629.         field.afterMethod('afterRender', this.doAfterRender, this);
  1630.         field.afterMethod('onResize', this.doResize, this);
  1631.         field.afterMethod('onFocus', this.doFocus, this);
  1632.         field.beforeMethod('onDestroy', this.doDestroy, this);
  1633.     },
  1634.     doRender: function(ct, position){
  1635.         var el = this.el = this.field.getEl();
  1636.         var f = this.field;
  1637.         if (!f.wrap) {
  1638.             f.wrap = this.wrap = el.wrap({
  1639.                 cls: "x-form-field-wrap"
  1640.             });
  1641.         }
  1642.         else {
  1643.             this.wrap = f.wrap.addClass('x-form-field-wrap');
  1644.         }
  1645.         this.trigger = this.wrap.createChild({
  1646.             tag: "img",
  1647.             src: Ext.BLANK_IMAGE_URL,
  1648.             cls: "x-form-trigger " + this.triggerClass
  1649.         });
  1650.         if (!f.width) {
  1651.             this.wrap.setWidth(el.getWidth() + this.trigger.getWidth());
  1652.         }
  1653.         this.splitter = this.wrap.createChild({
  1654.             tag: 'div',
  1655.             cls: this.splitterClass,
  1656.             style: 'width:13px; height:2px;'
  1657.         });
  1658.         this.splitter.setRight((Ext.isIE) ? 1 : 2).setTop(10).show();
  1659.         this.proxy = this.trigger.createProxy('', this.splitter, true);
  1660.         this.proxy.addClass("x-form-spinner-proxy");
  1661.         this.proxy.setStyle('left', '0px');
  1662.         this.proxy.setSize(14, 1);
  1663.         this.proxy.hide();
  1664.         this.dd = new Ext.dd.DDProxy(this.splitter.dom.id, "SpinnerDrag", {
  1665.             dragElId: this.proxy.id
  1666.         });
  1667.         this.initTrigger();
  1668.         this.initSpinner();
  1669.     },
  1670.     doAfterRender: function(){
  1671.         var y;
  1672.         if (Ext.isIE && this.el.getY() != (y = this.trigger.getY())) {
  1673.             this.el.position();
  1674.             this.el.setY(y);
  1675.         }
  1676.     },
  1677.     doEnable: function(){
  1678.         if (this.wrap) {
  1679.             this.wrap.removeClass(this.field.disabledClass);
  1680.         }
  1681.     },
  1682.     doDisable: function(){
  1683.         if (this.wrap) {
  1684.             this.wrap.addClass(this.field.disabledClass);
  1685.             this.el.removeClass(this.field.disabledClass);
  1686.         }
  1687.     },
  1688.     doResize: function(w, h){
  1689.         if (typeof w == 'number') {
  1690.             this.el.setWidth(w - this.trigger.getWidth());
  1691.         }
  1692.         this.wrap.setWidth(this.el.getWidth() + this.trigger.getWidth());
  1693.     },
  1694.     doFocus: function(){
  1695.         if (!this.mimicing) {
  1696.             this.wrap.addClass('x-trigger-wrap-focus');
  1697.             this.mimicing = true;
  1698.             Ext.get(Ext.isIE ? document.body : document).on("mousedown", this.mimicBlur, this, {
  1699.                 delay: 10
  1700.             });
  1701.             this.el.on('keydown', this.checkTab, this);
  1702.         }
  1703.     },
  1704.     // private
  1705.     checkTab: function(e){
  1706.         if (e.getKey() == e.TAB) {
  1707.             this.triggerBlur();
  1708.         }
  1709.     },
  1710.     // private
  1711.     mimicBlur: function(e){
  1712.         if (!this.wrap.contains(e.target) && this.field.validateBlur(e)) {
  1713.             this.triggerBlur();
  1714.         }
  1715.     },
  1716.     // private
  1717.     triggerBlur: function(){
  1718.         this.mimicing = false;
  1719.         Ext.get(Ext.isIE ? document.body : document).un("mousedown", this.mimicBlur, this);
  1720.         this.el.un("keydown", this.checkTab, this);
  1721.         this.field.beforeBlur();
  1722.         this.wrap.removeClass('x-trigger-wrap-focus');
  1723.         this.field.onBlur.call(this.field);
  1724.     },
  1725.     initTrigger: function(){
  1726.         this.trigger.addClassOnOver('x-form-trigger-over');
  1727.         this.trigger.addClassOnClick('x-form-trigger-click');
  1728.     },
  1729.     initSpinner: function(){
  1730.         this.field.addEvents({
  1731.             'spin': true,
  1732.             'spinup': true,
  1733.             'spindown': true
  1734.         });
  1735.         this.keyNav = new Ext.KeyNav(this.el, {
  1736.             "up": function(e){
  1737.                 e.preventDefault();
  1738.                 this.onSpinUp();
  1739.             },
  1740.             "down": function(e){
  1741.                 e.preventDefault();
  1742.                 this.onSpinDown();
  1743.             },
  1744.             "pageUp": function(e){
  1745.                 e.preventDefault();
  1746.                 this.onSpinUpAlternate();
  1747.             },
  1748.             "pageDown": function(e){
  1749.                 e.preventDefault();
  1750.                 this.onSpinDownAlternate();
  1751.             },
  1752.             scope: this
  1753.         });
  1754.         this.repeater = new Ext.util.ClickRepeater(this.trigger, {
  1755.             accelerate: this.accelerate
  1756.         });
  1757.         this.field.mon(this.repeater, "click", this.onTriggerClick, this, {
  1758.             preventDefault: true
  1759.         });
  1760.         this.field.mon(this.trigger, {
  1761.             mouseover: this.onMouseOver,
  1762.             mouseout: this.onMouseOut,
  1763.             mousemove: this.onMouseMove,
  1764.             mousedown: this.onMouseDown,
  1765.             mouseup: this.onMouseUp,
  1766.             scope: this,
  1767.             preventDefault: true
  1768.         });
  1769.         this.field.mon(this.wrap, "mousewheel", this.handleMouseWheel, this);
  1770.         this.dd.setXConstraint(0, 0, 10)
  1771.         this.dd.setYConstraint(1500, 1500, 10);
  1772.         this.dd.endDrag = this.endDrag.createDelegate(this);
  1773.         this.dd.startDrag = this.startDrag.createDelegate(this);
  1774.         this.dd.onDrag = this.onDrag.createDelegate(this);
  1775.     },
  1776.     onMouseOver: function(){
  1777.         if (this.disabled) {
  1778.             return;
  1779.         }
  1780.         var middle = this.getMiddle();
  1781.         this.tmpHoverClass = (Ext.EventObject.getPageY() < middle) ? 'x-form-spinner-overup' : 'x-form-spinner-overdown';
  1782.         this.trigger.addClass(this.tmpHoverClass);
  1783.     },
  1784.     //private
  1785.     onMouseOut: function(){
  1786.         this.trigger.removeClass(this.tmpHoverClass);
  1787.     },
  1788.     //private
  1789.     onMouseMove: function(){
  1790.         if (this.disabled) {
  1791.             return;
  1792.         }
  1793.         var middle = this.getMiddle();
  1794.         if (((Ext.EventObject.getPageY() > middle) && this.tmpHoverClass == "x-form-spinner-overup") ||
  1795.         ((Ext.EventObject.getPageY() < middle) && this.tmpHoverClass == "x-form-spinner-overdown")) {
  1796.         }
  1797.     },
  1798.     //private
  1799.     onMouseDown: function(){
  1800.         if (this.disabled) {
  1801.             return;
  1802.         }
  1803.         var middle = this.getMiddle();
  1804.         this.tmpClickClass = (Ext.EventObject.getPageY() < middle) ? 'x-form-spinner-clickup' : 'x-form-spinner-clickdown';
  1805.         this.trigger.addClass(this.tmpClickClass);
  1806.     },
  1807.     //private
  1808.     onMouseUp: function(){
  1809.         this.trigger.removeClass(this.tmpClickClass);
  1810.     },
  1811.     //private
  1812.     onTriggerClick: function(){
  1813.         if (this.disabled || this.el.dom.readOnly) {
  1814.             return;
  1815.         }
  1816.         var middle = this.getMiddle();
  1817.         var ud = (Ext.EventObject.getPageY() < middle) ? 'Up' : 'Down';
  1818.         this['onSpin' + ud]();
  1819.     },
  1820.     //private
  1821.     getMiddle: function(){
  1822.         var t = this.trigger.getTop();
  1823.         var h = this.trigger.getHeight();
  1824.         var middle = t + (h / 2);
  1825.         return middle;
  1826.     },
  1827.     //private
  1828.     //checks if control is allowed to spin
  1829.     isSpinnable: function(){
  1830.         if (this.disabled || this.el.dom.readOnly) {
  1831.             Ext.EventObject.preventDefault(); //prevent scrolling when disabled/readonly
  1832.             return false;
  1833.         }
  1834.         return true;
  1835.     },
  1836.     handleMouseWheel: function(e){
  1837.         //disable scrolling when not focused
  1838.         if (this.wrap.hasClass('x-trigger-wrap-focus') == false) {
  1839.             return;
  1840.         }
  1841.         var delta = e.getWheelDelta();
  1842.         if (delta > 0) {
  1843.             this.onSpinUp();
  1844.             e.stopEvent();
  1845.         }
  1846.         else
  1847.             if (delta < 0) {
  1848.                 this.onSpinDown();
  1849.                 e.stopEvent();
  1850.             }
  1851.     },
  1852.     //private
  1853.     startDrag: function(){
  1854.         this.proxy.show();
  1855.         this._previousY = Ext.fly(this.dd.getDragEl()).getTop();
  1856.     },
  1857.     //private
  1858.     endDrag: function(){
  1859.         this.proxy.hide();
  1860.     },
  1861.     //private
  1862.     onDrag: function(){
  1863.         if (this.disabled) {
  1864.             return;
  1865.         }
  1866.         var y = Ext.fly(this.dd.getDragEl()).getTop();
  1867.         var ud = '';
  1868.         if (this._previousY > y) {
  1869.             ud = 'Up';
  1870.         } //up
  1871.         if (this._previousY < y) {
  1872.             ud = 'Down';
  1873.         } //down
  1874.         if (ud != '') {
  1875.             this['onSpin' + ud]();
  1876.         }
  1877.         this._previousY = y;
  1878.     },
  1879.     //private
  1880.     onSpinUp: function(){
  1881.         if (this.isSpinnable() == false) {
  1882.             return;
  1883.         }
  1884.         if (Ext.EventObject.shiftKey == true) {
  1885.             this.onSpinUpAlternate();
  1886.             return;
  1887.         }
  1888.         else {
  1889.             this.spin(false, false);
  1890.         }
  1891.         this.field.fireEvent("spin", this);
  1892.         this.field.fireEvent("spinup", this);
  1893.     },
  1894.     //private
  1895.     onSpinDown: function(){
  1896.         if (this.isSpinnable() == false) {
  1897.             return;
  1898.         }
  1899.         if (Ext.EventObject.shiftKey == true) {
  1900.             this.onSpinDownAlternate();
  1901.             return;
  1902.         }
  1903.         else {
  1904.             this.spin(true, false);
  1905.         }
  1906.         this.field.fireEvent("spin", this);
  1907.         this.field.fireEvent("spindown", this);
  1908.     },
  1909.     //private
  1910.     onSpinUpAlternate: function(){
  1911.         if (this.isSpinnable() == false) {
  1912.             return;
  1913.         }
  1914.         this.spin(false, true);
  1915.         this.field.fireEvent("spin", this);
  1916.         this.field.fireEvent("spinup", this);
  1917.     },
  1918.     //private
  1919.     onSpinDownAlternate: function(){
  1920.         if (this.isSpinnable() == false) {
  1921.             return;
  1922.         }
  1923.         this.spin(true, true);
  1924.         this.field.fireEvent("spin", this);
  1925.         this.field.fireEvent("spindown", this);
  1926.     },
  1927.     spin: function(down, alternate){
  1928.         var v = parseFloat(this.field.getValue());
  1929.         var incr = (alternate == true) ? this.alternateIncrementValue : this.incrementValue;
  1930.         (down == true) ? v -= incr : v += incr;
  1931.         v = (isNaN(v)) ? this.defaultValue : v;
  1932.         v = this.fixBoundries(v);
  1933.         this.field.setRawValue(v);
  1934.     },
  1935.     fixBoundries: function(value){
  1936.         var v = value;
  1937.         if (this.field.minValue != undefined && v < this.field.minValue) {
  1938.             v = this.field.minValue;
  1939.         }
  1940.         if (this.field.maxValue != undefined && v > this.field.maxValue) {
  1941.             v = this.field.maxValue;
  1942.         }
  1943.         return this.fixPrecision(v);
  1944.     },
  1945.     // private
  1946.     fixPrecision: function(value){
  1947.         var nan = isNaN(value);
  1948.         if (!this.field.allowDecimals || this.field.decimalPrecision == -1 || nan || !value) {
  1949.             return nan ? '' : value;
  1950.         }
  1951.         return parseFloat(parseFloat(value).toFixed(this.field.decimalPrecision));
  1952.     },
  1953.     doDestroy: function(){
  1954.         if (this.trigger) {
  1955.             this.trigger.remove();
  1956.         }
  1957.         if (this.wrap) {
  1958.             this.wrap.remove();
  1959.             delete this.field.wrap;
  1960.         }
  1961.         if (this.splitter) {
  1962.             this.splitter.remove();
  1963.         }
  1964.         if (this.dd) {
  1965.             this.dd.unreg();
  1966.             this.dd = null;
  1967.         }
  1968.         if (this.proxy) {
  1969.             this.proxy.remove();
  1970.         }
  1971.         if (this.repeater) {
  1972.             this.repeater.purgeListeners();
  1973.         }
  1974.     }
  1975. });
  1976. //backwards compat
  1977. Ext.form.Spinner = Ext.ux.Spinner;Ext.ux.Spotlight = function(config){
  1978.     Ext.apply(this, config);
  1979. }
  1980. Ext.ux.Spotlight.prototype = {
  1981.     active : false,
  1982.     animate : true,
  1983.     duration: .25,
  1984.     easing:'easeNone',
  1985.     // private
  1986.     animated : false,
  1987.     createElements : function(){
  1988.         var bd = Ext.getBody();
  1989.         this.right = bd.createChild({cls:'x-spotlight'});
  1990.         this.left = bd.createChild({cls:'x-spotlight'});
  1991.         this.top = bd.createChild({cls:'x-spotlight'});
  1992.         this.bottom = bd.createChild({cls:'x-spotlight'});
  1993.         this.all = new Ext.CompositeElement([this.right, this.left, this.top, this.bottom]);
  1994.     },
  1995.     show : function(el, callback, scope){
  1996.         if(this.animated){
  1997.             this.show.defer(50, this, [el, callback, scope]);
  1998.             return;
  1999.         }
  2000.         this.el = Ext.get(el);
  2001.         if(!this.right){
  2002.             this.createElements();
  2003.         }
  2004.         if(!this.active){
  2005.             this.all.setDisplayed('');
  2006.             this.applyBounds(true, false);
  2007.             this.active = true;
  2008.             Ext.EventManager.onWindowResize(this.syncSize, this);
  2009.             this.applyBounds(false, this.animate, false, callback, scope);
  2010.         }else{
  2011.             this.applyBounds(false, false, false, callback, scope); // all these booleans look hideous
  2012.         }
  2013.     },
  2014.     hide : function(callback, scope){
  2015.         if(this.animated){
  2016.             this.hide.defer(50, this, [callback, scope]);
  2017.             return;
  2018.         }
  2019.         Ext.EventManager.removeResizeListener(this.syncSize, this);
  2020.         this.applyBounds(true, this.animate, true, callback, scope);
  2021.     },
  2022.     doHide : function(){
  2023.         this.active = false;
  2024.         this.all.setDisplayed(false);
  2025.     },
  2026.     syncSize : function(){
  2027.         this.applyBounds(false, false);
  2028.     },
  2029.     applyBounds : function(basePts, anim, doHide, callback, scope){
  2030.         var rg = this.el.getRegion();
  2031.         var dw = Ext.lib.Dom.getViewWidth(true);
  2032.         var dh = Ext.lib.Dom.getViewHeight(true);
  2033.         var c = 0, cb = false;
  2034.         if(anim){
  2035.             cb = {
  2036.                 callback: function(){
  2037.                     c++;
  2038.                     if(c == 4){
  2039.                         this.animated = false;
  2040.                         if(doHide){
  2041.                             this.doHide();
  2042.                         }
  2043.                         Ext.callback(callback, scope, [this]);
  2044.                     }
  2045.                 },
  2046.                 scope: this,
  2047.                 duration: this.duration,
  2048.                 easing: this.easing
  2049.             };
  2050.             this.animated = true;
  2051.         }
  2052.         this.right.setBounds(
  2053.                 rg.right,
  2054.                 basePts ? dh : rg.top,
  2055.                 dw - rg.right,
  2056.                 basePts ? 0 : (dh - rg.top),
  2057.                 cb);
  2058.         this.left.setBounds(
  2059.                 0,
  2060.                 0,
  2061.                 rg.left,
  2062.                 basePts ? 0 : rg.bottom,
  2063.                 cb);
  2064.         this.top.setBounds(
  2065.                 basePts ? dw : rg.left,
  2066.                 0,
  2067.                 basePts ? 0 : dw - rg.left,
  2068.                 rg.top,
  2069.                 cb);
  2070.         this.bottom.setBounds(
  2071.                 0,
  2072.                 rg.bottom,
  2073.                 basePts ? 0 : rg.right,
  2074.                 dh - rg.bottom,
  2075.                 cb);
  2076.         if(!anim){
  2077.             if(doHide){
  2078.                 this.doHide();
  2079.             }
  2080.             if(callback){
  2081.                 Ext.callback(callback, scope, [this]);
  2082.             }
  2083.         }
  2084.     },
  2085.     destroy : function(){
  2086.         this.doHide();
  2087.         Ext.destroy(
  2088.             this.right,
  2089.             this.left,
  2090.             this.top,
  2091.             this.bottom);
  2092.         delete this.el;
  2093.         delete this.all;
  2094.     }
  2095. };
  2096. //backwards compat
  2097. Ext.Spotlight = Ext.ux.Spotlight;/**  * @class Ext.ux.StatusBar  * <p>Basic status bar component that can be used as the bottom toolbar of any {@link Ext.Panel}.  In addition to  * supporting the standard {@link Ext.Toolbar} interface for adding buttons, menus and other items, the StatusBar  * provides a greedy status element that can be aligned to either side and has convenient methods for setting the  * status text and icon.  You can also indicate that something is processing using the {@link #showBusy} method.</p>  * <pre><code> new Ext.Panel({     title: 'StatusBar',     // etc.     bbar: new Ext.ux.StatusBar({         id: 'my-status',         // defaults to use when the status is cleared:         defaultText: 'Default status text',         defaultIconCls: 'default-icon',         // values to set initially:         text: 'Ready',         iconCls: 'ready-icon',         // any standard Toolbar items:         items: [{             text: 'A Button'         }, '-', 'Plain Text']     }) }); // Update the status bar later in code: var sb = Ext.getCmp('my-status'); sb.setStatus({     text: 'OK',     iconCls: 'ok-icon',     clear: true // auto-clear after a set interval }); // Set the status bar to show that something is processing: sb.showBusy(); // processing.... sb.clearStatus(); // once completeed </code></pre>  * @extends Ext.Toolbar  * @constructor  * Creates a new StatusBar  * @param {Object/Array} config A config object  */ Ext.ux.StatusBar = Ext.extend(Ext.Toolbar, {     /**      * @cfg {String} statusAlign      * The alignment of the status element within the overall StatusBar layout.  When the StatusBar is rendered,      * it creates an internal div containing the status text and icon.  Any additional Toolbar items added in the      * StatusBar's {@link #items} config, or added via {@link #add} or any of the supported add* methods, will be      * rendered, in added order, to the opposite side.  The status element is greedy, so it will automatically      * expand to take up all sapce left over by any other items.  Example usage:      * <pre><code> // Create a left-aligned status bar containing a button, // separator and text item that will be right-aligned (default): new Ext.Panel({     title: 'StatusBar',     // etc.     bbar: new Ext.ux.StatusBar({         defaultText: 'Default status text',         id: 'status-id',         items: [{             text: 'A Button'         }, '-', 'Plain Text']     }) }); // By adding the statusAlign config, this will create the // exact same toolbar, except the status and toolbar item // layout will be reversed from the previous example: new Ext.Panel({     title: 'StatusBar',     // etc.     bbar: new Ext.ux.StatusBar({         defaultText: 'Default status text',         id: 'status-id',         statusAlign: 'right',         items: [{             text: 'A Button'         }, '-', 'Plain Text']     }) }); </code></pre>      */     /**      * @cfg {String} defaultText      * The default {@link #text} value.  This will be used anytime the status bar is cleared with the      * <tt>useDefaults:true</tt> option (defaults to '').      */     /**      * @cfg {String} defaultIconCls      * The default {@link #iconCls} value (see the iconCls docs for additional details about customizing the icon).      * This will be used anytime the status bar is cleared with the <tt>useDefaults:true</tt> option (defaults to '').      */     /**      * @cfg {String} text      * A string that will be <b>initially</b> set as the status message.  This string      * will be set as innerHTML (html tags are accepted) for the toolbar item.      * If not specified, the value set for <code>{@link #defaultText}</code>      * will be used.      */     /**      * @cfg {String} iconCls      * A CSS class that will be <b>initially</b> set as the status bar icon and is      * expected to provide a background image (defaults to '').      * Example usage:<pre><code> // Example CSS rule: .x-statusbar .x-status-custom {     padding-left: 25px;     background: transparent url(images/custom-icon.gif) no-repeat 3px 2px; } // Setting a default icon: var sb = new Ext.ux.StatusBar({     defaultIconCls: 'x-status-custom' }); // Changing the icon: sb.setStatus({     text: 'New status',     iconCls: 'x-status-custom' }); </code></pre>      */     /**      * @cfg {String} cls      * The base class applied to the containing element for this component on render (defaults to 'x-statusbar')      */     cls : 'x-statusbar',     /**      * @cfg {String} busyIconCls      * The default <code>{@link #iconCls}</code> applied when calling      * <code>{@link #showBusy}</code> (defaults to <tt>'x-status-busy'</tt>).      * It can be overridden at any time by passing the <code>iconCls</code>      * argument into <code>{@link #showBusy}</code>.      */     busyIconCls : 'x-status-busy',     /**      * @cfg {String} busyText      * The default <code>{@link #text}</code> applied when calling      * <code>{@link #showBusy}</code> (defaults to <tt>'Loading...'</tt>).      * It can be overridden at any time by passing the <code>text</code>      * argument into <code>{@link #showBusy}</code>.      */     busyText : 'Loading...',     /**      * @cfg {Number} autoClear      * The number of milliseconds to wait after setting the status via      * <code>{@link #setStatus}</code> before automatically clearing the status      * text and icon (defaults to <tt>5000</tt>).  Note that this only applies      * when passing the <tt>clear</tt> argument to <code>{@link #setStatus}</code>      * since that is the only way to defer clearing the status.  This can      * be overridden by specifying a different <tt>wait</tt> value in      * <code>{@link #setStatus}</code>. Calls to <code>{@link #clearStatus}</code>      * always clear the status bar immediately and ignore this value.      */     autoClear : 5000,     /**      * @cfg {String} emptyText      * The text string to use if no text has been set.  Defaults to      * <tt>'&nbsp;'</tt>).  If there are no other items in the toolbar using      * an empty string (<tt>''</tt>) for this value would end up in the toolbar      * height collapsing since the empty string will not maintain the toolbar      * height.  Use <tt>''</tt> if the toolbar should collapse in height      * vertically when no text is specified and there are no other items in      * the toolbar.      */     emptyText : '&nbsp;',     // private     activeThreadId : 0,     // private     initComponent : function(){         if(this.statusAlign=='right'){             this.cls += ' x-status-right';         }         Ext.ux.StatusBar.superclass.initComponent.call(this);     },     // private     afterRender : function(){         Ext.ux.StatusBar.superclass.afterRender.call(this);         var right = this.statusAlign == 'right';         this.currIconCls = this.iconCls || this.defaultIconCls;         this.statusEl = new Ext.Toolbar.TextItem({             cls: 'x-status-text ' + (this.currIconCls || ''),             text: this.text || this.defaultText || ''         });         if(right){             this.add('->');             this.add(this.statusEl);         }else{             this.insert(0, this.statusEl);             this.insert(1, '->');         } //         this.statusEl = td.createChild({ //             cls: 'x-status-text ' + (this.iconCls || this.defaultIconCls || ''), //             html: this.text || this.defaultText || '' //         }); //         this.statusEl.unselectable(); //         this.spacerEl = td.insertSibling({ //             tag: 'td', //             style: 'width:100%', //             cn: [{cls:'ytb-spacer'}] //         }, right ? 'before' : 'after');     },     /**      * Sets the status {@link #text} and/or {@link #iconCls}. Also supports automatically clearing the      * status that was set after a specified interval.      * @param {Object/String} config A config object specifying what status to set, or a string assumed      * to be the status text (and all other options are defaulted as explained below). A config      * object containing any or all of the following properties can be passed:<ul>      * <li><tt>text</tt> {String} : (optional) The status text to display.  If not specified, any current      * status text will remain unchanged.</li>      * <li><tt>iconCls</tt> {String} : (optional) The CSS class used to customize the status icon (see      * {@link #iconCls} for details). If not specified, any current iconCls will remain unchanged.</li>      * <li><tt>clear</tt> {Boolean/Number/Object} : (optional) Allows you to set an internal callback that will      * automatically clear the status text and iconCls after a specified amount of time has passed. If clear is not      * specified, the new status will not be auto-cleared and will stay until updated again or cleared using      * {@link #clearStatus}. If <tt>true</tt> is passed, the status will be cleared using {@link #autoClear},      * {@link #defaultText} and {@link #defaultIconCls} via a fade out animation. If a numeric value is passed,      * it will be used as the callback interval (in milliseconds), overriding the {@link #autoClear} value.      * All other options will be defaulted as with the boolean option.  To customize any other options,      * you can pass an object in the format:<ul>      *    <li><tt>wait</tt> {Number} : (optional) The number of milliseconds to wait before clearing      *    (defaults to {@link #autoClear}).</li>      *    <li><tt>anim</tt> {Number} : (optional) False to clear the status immediately once the callback      *    executes (defaults to true which fades the status out).</li>      *    <li><tt>useDefaults</tt> {Number} : (optional) False to completely clear the status text and iconCls      *    (defaults to true which uses {@link #defaultText} and {@link #defaultIconCls}).</li>      * </ul></li></ul>      * Example usage:<pre><code> // Simple call to update the text statusBar.setStatus('New status'); // Set the status and icon, auto-clearing with default options: statusBar.setStatus({     text: 'New status',     iconCls: 'x-status-custom',     clear: true }); // Auto-clear with custom options: statusBar.setStatus({     text: 'New status',     iconCls: 'x-status-custom',     clear: {         wait: 8000,         anim: false,         useDefaults: false     } }); </code></pre>      * @return {Ext.ux.StatusBar} this      */     setStatus : function(o){         o = o || {};         if(typeof o == 'string'){             o = {text:o};         }         if(o.text !== undefined){             this.setText(o.text);         }         if(o.iconCls !== undefined){             this.setIcon(o.iconCls);         }         if(o.clear){             var c = o.clear,                 wait = this.autoClear,                 defaults = {useDefaults: true, anim: true};             if(typeof c == 'object'){                 c = Ext.applyIf(c, defaults);                 if(c.wait){                     wait = c.wait;                 }             }else if(typeof c == 'number'){                 wait = c;                 c = defaults;             }else if(typeof c == 'boolean'){                 c = defaults;             }             c.threadId = this.activeThreadId;             this.clearStatus.defer(wait, this, [c]);         }         return this;     },     /**      * Clears the status {@link #text} and {@link #iconCls}. Also supports clearing via an optional fade out animation.      * @param {Object} config (optional) A config object containing any or all of the following properties.  If this      * object is not specified the status will be cleared using the defaults below:<ul>      * <li><tt>anim</tt> {Boolean} : (optional) True to clear the status by fading out the status element (defaults      * to false which clears immediately).</li>      * <li><tt>useDefaults</tt> {Boolean} : (optional) True to reset the text and icon using {@link #defaultText} and      * {@link #defaultIconCls} (defaults to false which sets the text to '' and removes any existing icon class).</li>      * </ul>      * @return {Ext.ux.StatusBar} this      */     clearStatus : function(o){         o = o || {};         if(o.threadId && o.threadId !== this.activeThreadId){             // this means the current call was made internally, but a newer             // thread has set a message since this call was deferred.  Since             // we don't want to overwrite a newer message just ignore.             return this;         }         var text = o.useDefaults ? this.defaultText : this.emptyText,             iconCls = o.useDefaults ? (this.defaultIconCls ? this.defaultIconCls : '') : '';         if(o.anim){             // animate the statusEl Ext.Element             this.statusEl.el.fadeOut({                 remove: false,                 useDisplay: true,                 scope: this,                 callback: function(){                     this.setStatus({                     text: text,                     iconCls: iconCls                 });                     this.statusEl.el.show();                 }             });         }else{             // hide/show the el to avoid jumpy text or icon             this.statusEl.hide();         this.setStatus({             text: text,             iconCls: iconCls         });             this.statusEl.show();         }         return this;     },     /**      * Convenience method for setting the status text directly.  For more flexible options see {@link #setStatus}.      * @param {String} text (optional) The text to set (defaults to '')      * @return {Ext.ux.StatusBar} this      */     setText : function(text){         this.activeThreadId++;         this.text = text || '';         if(this.rendered){             this.statusEl.setText(this.text);         }         return this;     },     /**      * Returns the current status text.      * @return {String} The status text      */     getText : function(){         return this.text;     },     /**      * Convenience method for setting the status icon directly.  For more flexible options see {@link #setStatus}.      * See {@link #iconCls} for complete details about customizing the icon.      * @param {String} iconCls (optional) The icon class to set (defaults to '', and any current icon class is removed)      * @return {Ext.ux.StatusBar} this      */     setIcon : function(cls){         this.activeThreadId++;         cls = cls || '';         if(this.rendered){         if(this.currIconCls){             this.statusEl.removeClass(this.currIconCls);             this.currIconCls = null;         }         if(cls.length > 0){             this.statusEl.addClass(cls);             this.currIconCls = cls;         }         }else{             this.currIconCls = cls;         }         return this;     },     /**      * Convenience method for setting the status text and icon to special values that are pre-configured to indicate      * a "busy" state, usually for loading or processing activities.      * @param {Object/String} config (optional) A config object in the same format supported by {@link #setStatus}, or a      * string to use as the status text (in which case all other options for setStatus will be defaulted).  Use the      * <tt>text</tt> and/or <tt>iconCls</tt> properties on the config to override the default {@link #busyText}      * and {@link #busyIconCls} settings. If the config argument is not specified, {@link #busyText} and      * {@link #busyIconCls} will be used in conjunction with all of the default options for {@link #setStatus}.      * @return {Ext.ux.StatusBar} this      */     showBusy : function(o){         if(typeof o == 'string'){             o = {text:o};         }         o = Ext.applyIf(o || {}, {             text: this.busyText,             iconCls: this.busyIconCls         });         return this.setStatus(o);     } }); Ext.reg('statusbar', Ext.ux.StatusBar); /**
  2098.  * @class Ext.ux.TabCloseMenu
  2099.  * @extends Object 
  2100.  * Plugin (ptype = 'tabclosemenu') for adding a close context menu to tabs.
  2101.  * 
  2102.  * @ptype tabclosemenu
  2103.  */
  2104. Ext.ux.TabCloseMenu = function(){
  2105.     var tabs, menu, ctxItem;
  2106.     this.init = function(tp){
  2107.         tabs = tp;
  2108.         tabs.on('contextmenu', onContextMenu);
  2109.     };
  2110.     function onContextMenu(ts, item, e){
  2111.         if(!menu){ // create context menu on first right click
  2112.             menu = new Ext.menu.Menu({            
  2113.             items: [{
  2114.                 id: tabs.id + '-close',
  2115.                 text: 'Close Tab',
  2116.                 handler : function(){
  2117.                     tabs.remove(ctxItem);
  2118.                 }
  2119.             },{
  2120.                 id: tabs.id + '-close-others',
  2121.                 text: 'Close Other Tabs',
  2122.                 handler : function(){
  2123.                     tabs.items.each(function(item){
  2124.                         if(item.closable && item != ctxItem){
  2125.                             tabs.remove(item);
  2126.                         }
  2127.                     });
  2128.                 }
  2129.             }]});
  2130.         }
  2131.         ctxItem = item;
  2132.         var items = menu.items;
  2133.         items.get(tabs.id + '-close').setDisabled(!item.closable);
  2134.         var disableOthers = true;
  2135.         tabs.items.each(function(){
  2136.             if(this != item && this.closable){
  2137.                 disableOthers = false;
  2138.                 return false;
  2139.             }
  2140.         });
  2141.         items.get(tabs.id + '-close-others').setDisabled(disableOthers);
  2142. e.stopEvent();
  2143.         menu.showAt(e.getPoint());
  2144.     }
  2145. };
  2146. Ext.preg('tabclosemenu', Ext.ux.TabCloseMenu);
  2147. Ext.ns('Ext.ux.grid'); /**  * @class Ext.ux.grid.TableGrid  * @extends Ext.grid.GridPanel  * A Grid which creates itself from an existing HTML table element.  * @history  * 2007-03-01 Original version by Nige "Animal" White  * 2007-03-10 jvs Slightly refactored to reuse existing classes * @constructor  * @param {String/HTMLElement/Ext.Element} table The table element from which this grid will be created -  * The table MUST have some type of size defined for the grid to fill. The container will be  * automatically set to position relative if it isn't already.  * @param {Object} config A config object that sets properties on this grid and has two additional (optional)  * properties: fields and columns which allow for customizing data fields and columns for this grid.  */ Ext.ux.grid.TableGrid = function(table, config){     config = config ||     {};     Ext.apply(this, config);     var cf = config.fields || [], ch = config.columns || [];     table = Ext.get(table);          var ct = table.insertSibling();          var fields = [], cols = [];     var headers = table.query("thead th");     for (var i = 0, h; h = headers[i]; i++) {         var text = h.innerHTML;         var name = 'tcol-' + i;                  fields.push(Ext.applyIf(cf[i] ||         {}, {             name: name,             mapping: 'td:nth(' + (i + 1) + ')/@innerHTML'         }));                  cols.push(Ext.applyIf(ch[i] ||         {}, {             'header': text,             'dataIndex': name,             'width': h.offsetWidth,             'tooltip': h.title,             'sortable': true         }));     }          var ds = new Ext.data.Store({         reader: new Ext.data.XmlReader({             record: 'tbody tr'         }, fields)     });          ds.loadData(table.dom);          var cm = new Ext.grid.ColumnModel(cols);          if (config.width || config.height) {         ct.setSize(config.width || 'auto', config.height || 'auto');     }     else {         ct.setWidth(table.getWidth());     }          if (config.remove !== false) {         table.remove();     }          Ext.applyIf(this, {         'ds': ds,         'cm': cm,         'sm': new Ext.grid.RowSelectionModel(),         autoHeight: true,         autoWidth: false     });     Ext.ux.grid.TableGrid.superclass.constructor.call(this, ct, {}); }; Ext.extend(Ext.ux.grid.TableGrid, Ext.grid.GridPanel); //backwards compat Ext.grid.TableGrid = Ext.ux.grid.TableGrid; Ext.ns('Ext.ux'); /**  * @class Ext.ux.TabScrollerMenu  * @extends Object   * Plugin (ptype = 'tabscrollermenu') for adding a tab scroller menu to tabs.  * @constructor   * @param {Object} config Configuration options  * @ptype tabscrollermenu  */ Ext.ux.TabScrollerMenu =  Ext.extend(Object, {     /**      * @cfg {Number} pageSize How many items to allow per submenu.      */ pageSize       : 10,     /**      * @cfg {Number} maxText How long should the title of each {@link Ext.menu.Item} be.      */ maxText        : 15,     /**      * @cfg {String} menuPrefixText Text to prefix the submenus.      */     menuPrefixText : 'Items', constructor    : function(config) { config = config || {}; Ext.apply(this, config); },     //private init : function(tabPanel) { Ext.apply(tabPanel, this.parentOverrides); tabPanel.tabScrollerMenu = this; var thisRef = this; tabPanel.on({ render : { scope  : tabPanel, single : true, fn     : function() {  var newFn = tabPanel.createScrollers.createSequence(thisRef.createPanelsMenu, this); tabPanel.createScrollers = newFn; } } }); }, // private && sequeneced createPanelsMenu : function() { var h = this.stripWrap.dom.offsetHeight; //move the right menu item to the left 18px var rtScrBtn = this.header.dom.firstChild; Ext.fly(rtScrBtn).applyStyles({ right : '18px' }); var stripWrap = Ext.get(this.strip.dom.parentNode); stripWrap.applyStyles({  'margin-right' : '36px' }); // Add the new righthand menu var scrollMenu = this.header.insertFirst({ cls:'x-tab-tabmenu-right' }); scrollMenu.setHeight(h); scrollMenu.addClassOnOver('x-tab-tabmenu-over'); scrollMenu.on('click', this.showTabsMenu, this); this.scrollLeft.show = this.scrollLeft.show.createSequence(function() { scrollMenu.show();     }); this.scrollLeft.hide = this.scrollLeft.hide.createSequence(function() { scrollMenu.hide(); }); },     /**      * Returns an the current page size (this.pageSize);      * @return {Number} this.pageSize The current page size.      */ getPageSize : function() { return this.pageSize; },     /**      * Sets the number of menu items per submenu "page size".      * @param {Number} pageSize The page size      */     setPageSize : function(pageSize) { this.pageSize = pageSize; },     /**      * Returns the current maxText length;      * @return {Number} this.maxText The current max text length.      */     getMaxText : function() { return this.maxText; },     /**      * Sets the maximum text size for each menu item.      * @param {Number} t The max text per each menu item.      */     setMaxText : function(t) { this.maxText = t; },     /**      * Returns the current menu prefix text String.;      * @return {String} this.menuPrefixText The current menu prefix text.      */ getMenuPrefixText : function() { return this.menuPrefixText; },     /**      * Sets the menu prefix text String.      * @param {String} t The menu prefix text.      */     setMenuPrefixText : function(t) { this.menuPrefixText = t; }, // private && applied to the tab panel itself. parentOverrides : { // all execute within the scope of the tab panel // private showTabsMenu : function(e) { if  (this.tabsMenu) { this.tabsMenu.destroy();                 this.un('destroy', this.tabsMenu.destroy, this.tabsMenu);                 this.tabsMenu = null; }             this.tabsMenu =  new Ext.menu.Menu();             this.on('destroy', this.tabsMenu.destroy, this.tabsMenu);             this.generateTabMenuItems();             var target = Ext.get(e.getTarget()); var xy     = target.getXY(); // //Y param + 24 pixels xy[1] += 24; this.tabsMenu.showAt(xy); }, // private generateTabMenuItems : function() { var curActive  = this.getActiveTab(); var totalItems = this.items.getCount(); var pageSize   = this.tabScrollerMenu.getPageSize(); if (totalItems > pageSize)  { var numSubMenus = Math.floor(totalItems / pageSize); var remainder   = totalItems % pageSize; // Loop through all of the items and create submenus in chunks of 10 for (var i = 0 ; i < numSubMenus; i++) { var curPage = (i + 1) * pageSize; var menuItems = []; for (var x = 0; x < pageSize; x++) { index = x + curPage - pageSize; var item = this.items.get(index); menuItems.push(this.autoGenMenuItem(item)); } this.tabsMenu.add({ text : this.tabScrollerMenu.getMenuPrefixText() + ' '  + (curPage - pageSize + 1) + ' - ' + curPage, menu : menuItems }); } // remaining items if (remainder > 0) { var start = numSubMenus * pageSize; menuItems = []; for (var i = start ; i < totalItems; i ++ ) { var item = this.items.get(i); menuItems.push(this.autoGenMenuItem(item)); } this.tabsMenu.add({ text : this.tabScrollerMenu.menuPrefixText  + ' ' + (start + 1) + ' - ' + (start + menuItems.length), menu : menuItems }); } } else { this.items.each(function(item) { if (item.id != curActive.id && ! item.hidden) { menuItems.push(this.autoGenMenuItem(item)); } }, this); } }, // private autoGenMenuItem : function(item) { var maxText = this.tabScrollerMenu.getMaxText(); var text    = Ext.util.Format.ellipsis(item.title, maxText); return { text      : text, handler   : this.showTabFromMenu, scope     : this, disabled  : item.disabled, tabToShow : item, iconCls   : item.iconCls } }, // private showTabFromMenu : function(menuItem) { this.setActiveTab(menuItem.tabToShow); } } }); Ext.reg('tabscrollermenu', Ext.ux.TabScrollerMenu); Ext.ns('Ext.ux.tree'); /**  * @class Ext.ux.tree.XmlTreeLoader  * @extends Ext.tree.TreeLoader  * <p>A TreeLoader that can convert an XML document into a hierarchy of {@link Ext.tree.TreeNode}s.  * Any text value included as a text node in the XML will be added to the parent node as an attribute  * called <tt>innerText</tt>.  Also, the tag name of each XML node will be added to the tree node as  * an attribute called <tt>tagName</tt>.</p>  * <p>By default, this class expects that your source XML will provide the necessary attributes on each  * node as expected by the {@link Ext.tree.TreePanel} to display and load properly.  However, you can  * provide your own custom processing of node attributes by overriding the {@link #processNode} method  * and modifying the attributes as needed before they are used to create the associated TreeNode.</p>  * @constructor  * Creates a new XmlTreeloader.  * @param {Object} config A config object containing config properties.  */ Ext.ux.tree.XmlTreeLoader = Ext.extend(Ext.tree.TreeLoader, {     /**      * @property  XML_NODE_ELEMENT      * XML element node (value 1, read-only)      * @type Number      */     XML_NODE_ELEMENT : 1,     /**      * @property  XML_NODE_TEXT      * XML text node (value 3, read-only)      * @type Number      */     XML_NODE_TEXT : 3,     // private override     processResponse : function(response, node, callback){         var xmlData = response.responseXML;         var root = xmlData.documentElement || xmlData;         try{             node.beginUpdate();             node.appendChild(this.parseXml(root));             node.endUpdate();             if(typeof callback == "function"){                 callback(this, node);             }         }catch(e){             this.handleFailure(response);         }     },     // private     parseXml : function(node) {         var nodes = [];         Ext.each(node.childNodes, function(n){             if(n.nodeType == this.XML_NODE_ELEMENT){                 var treeNode = this.createNode(n);                 if(n.childNodes.length > 0){                     var child = this.parseXml(n);                     if(typeof child == 'string'){                         treeNode.attributes.innerText = child;                     }else{                         treeNode.appendChild(child);                     }                 }                 nodes.push(treeNode);             }             else if(n.nodeType == this.XML_NODE_TEXT){                 var text = n.nodeValue.trim();                 if(text.length > 0){                     return nodes = text;                 }             }         }, this);         return nodes;     },     // private override     createNode : function(node){         var attr = {             tagName: node.tagName         };         Ext.each(node.attributes, function(a){             attr[a.nodeName] = a.nodeValue;         });         this.processAttributes(attr);         return Ext.ux.tree.XmlTreeLoader.superclass.createNode.call(this, attr);     },     /*      * Template method intended to be overridden by subclasses that need to provide      * custom attribute processing prior to the creation of each TreeNode.  This method      * will be passed a config object containing existing TreeNode attribute name/value      * pairs which can be modified as needed directly (no need to return the object).      */     processAttributes: Ext.emptyFn }); //backwards compat Ext.ux.XmlTreeLoader = Ext.ux.tree.XmlTreeLoader; /**  * @class Ext.ux.ValidationStatus  * A {@link Ext.StatusBar} plugin that provides automatic error notification when the  * associated form contains validation errors.  * @extends Ext.Component  * @constructor  * Creates a new ValiationStatus plugin  * @param {Object} config A config object  */ Ext.ux.ValidationStatus = Ext.extend(Ext.Component, {     /**      * @cfg {String} errorIconCls      * The {@link #iconCls} value to be applied to the status message when there is a      * validation error. Defaults to <tt>'x-status-error'</tt>.      */     errorIconCls : 'x-status-error',     /**      * @cfg {String} errorListCls      * The css class to be used for the error list when there are validation errors.      * Defaults to <tt>'x-status-error-list'</tt>.      */     errorListCls : 'x-status-error-list',     /**      * @cfg {String} validIconCls      * The {@link #iconCls} value to be applied to the status message when the form      * validates. Defaults to <tt>'x-status-valid'</tt>.      */     validIconCls : 'x-status-valid',          /**      * @cfg {String} showText      * The {@link #text} value to be applied when there is a form validation error.      * Defaults to <tt>'The form has errors (click for details...)'</tt>.      */     showText : 'The form has errors (click for details...)',     /**      * @cfg {String} showText      * The {@link #text} value to display when the error list is displayed.      * Defaults to <tt>'Click again to hide the error list'</tt>.      */     hideText : 'Click again to hide the error list',     /**      * @cfg {String} submitText      * The {@link #text} value to be applied when the form is being submitted.      * Defaults to <tt>'Saving...'</tt>.      */     submitText : 'Saving...',          // private     init : function(sb){         sb.on('render', function(){             this.statusBar = sb;             this.monitor = true;             this.errors = new Ext.util.MixedCollection();             this.listAlign = (sb.statusAlign=='right' ? 'br-tr?' : 'bl-tl?');                          if(this.form){                 this.form = Ext.getCmp(this.form).getForm();                 this.startMonitoring();                 this.form.on('beforeaction', function(f, action){                     if(action.type == 'submit'){                         // Ignore monitoring while submitting otherwise the field validation                         // events cause the status message to reset too early                         this.monitor = false;                     }                 }, this);                 var startMonitor = function(){                     this.monitor = true;                 };                 this.form.on('actioncomplete', startMonitor, this);                 this.form.on('actionfailed', startMonitor, this);             }         }, this, {single:true});         sb.on({             scope: this,             afterlayout:{                 single: true,                 fn: function(){                     // Grab the statusEl after the first layout.                     sb.statusEl.getEl().on('click', this.onStatusClick, this, {buffer:200});                 }              },              beforedestroy:{                 single: true,                 fn: this.onDestroy             }          });     },          // private     startMonitoring : function(){         this.form.items.each(function(f){             f.on('invalid', this.onFieldValidation, this);             f.on('valid', this.onFieldValidation, this);         }, this);     },          // private     stopMonitoring : function(){         this.form.items.each(function(f){             f.un('invalid', this.onFieldValidation, this);             f.un('valid', this.onFieldValidation, this);         }, this);     },          // private     onDestroy : function(){         this.stopMonitoring();         this.statusBar.statusEl.un('click', this.onStatusClick, this);         Ext.ux.ValidationStatus.superclass.onDestroy.call(this);     },          // private     onFieldValidation : function(f, msg){         if(!this.monitor){             return false;         }         if(msg){             this.errors.add(f.id, {field:f, msg:msg});         }else{             this.errors.removeKey(f.id);         }         this.updateErrorList();         if(this.errors.getCount() > 0){             if(this.statusBar.getText() != this.showText){                 this.statusBar.setStatus({text:this.showText, iconCls:this.errorIconCls});             }         }else{             this.statusBar.clearStatus().setIcon(this.validIconCls);         }     },          // private     updateErrorList : function(){         if(this.errors.getCount() > 0){         var msg = '<ul>';         this.errors.each(function(err){             msg += ('<li id="x-err-'+ err.field.id +'"><a href="#">' + err.msg + '</a></li>');         }, this);         this.getMsgEl().update(msg+'</ul>');         }else{             this.getMsgEl().update('');         }     },          // private     getMsgEl : function(){         if(!this.msgEl){             this.msgEl = Ext.DomHelper.append(Ext.getBody(), {                 cls: this.errorListCls+' x-hide-offsets'             }, true);                          this.msgEl.on('click', function(e){                 var t = e.getTarget('li', 10, true);                 if(t){                     Ext.getCmp(t.id.split('x-err-')[1]).focus();                     this.hideErrors();                 }             }, this, {stopEvent:true}); // prevent anchor click navigation         }         return this.msgEl;     },          // private     showErrors : function(){         this.updateErrorList();         this.getMsgEl().alignTo(this.statusBar.getEl(), this.listAlign).slideIn('b', {duration:0.3, easing:'easeOut'});         this.statusBar.setText(this.hideText);         this.form.getEl().on('click', this.hideErrors, this, {single:true}); // hide if the user clicks directly into the form     },          // private     hideErrors : function(){         var el = this.getMsgEl();         if(el.isVisible()){         el.slideOut('b', {duration:0.2, easing:'easeIn'});         this.statusBar.setText(this.showText);         }         this.form.getEl().un('click', this.hideErrors, this);     },          // private     onStatusClick : function(){         if(this.getMsgEl().isVisible()){             this.hideErrors();         }else if(this.errors.getCount() > 0){             this.showErrors();         }     } });(function() {         Ext.override(Ext.list.Column, {         init : function() {                         if(!this.type){                 this.type = "auto";             }             var st = Ext.data.SortTypes;             // named sortTypes are supported, here we look them up             if(typeof this.sortType == "string"){                 this.sortType = st[this.sortType];             }             // set default sortType for strings and dates             if(!this.sortType){                 switch(this.type){                     case "string":                         this.sortType = st.asUCString;                         break;                     case "date":                         this.sortType = st.asDate;                         break;                     default:                         this.sortType = st.none;                 }             }         }     });     Ext.tree.Column = Ext.extend(Ext.list.Column, {});     Ext.tree.NumberColumn = Ext.extend(Ext.list.NumberColumn, {});     Ext.tree.DateColumn = Ext.extend(Ext.list.DateColumn, {});     Ext.tree.BooleanColumn = Ext.extend(Ext.list.BooleanColumn, {});     Ext.reg('tgcolumn', Ext.tree.Column);     Ext.reg('tgnumbercolumn', Ext.tree.NumberColumn);     Ext.reg('tgdatecolumn', Ext.tree.DateColumn);     Ext.reg('tgbooleancolumn', Ext.tree.BooleanColumn); })(); /**  * @class Ext.ux.tree.TreeGridNodeUI  * @extends Ext.tree.TreeNodeUI  */ Ext.ux.tree.TreeGridNodeUI = Ext.extend(Ext.tree.TreeNodeUI, {     isTreeGridNodeUI: true,          renderElements : function(n, a, targetNode, bulkRender){         var t = n.getOwnerTree(),             cols = t.columns,             c = cols[0],             i, buf, len;         this.indentMarkup = n.parentNode ? n.parentNode.ui.getChildIndent() : '';         buf = [              '<tbody class="x-tree-node">',                 '<tr ext:tree-node-id="', n.id ,'" class="x-tree-node-el ', a.cls, '">',                     '<td class="x-treegrid-col">',                         '<span class="x-tree-node-indent">', this.indentMarkup, "</span>",                         '<img src="', this.emptyIcon, '" class="x-tree-ec-icon x-tree-elbow">',                         '<img src="', a.icon || this.emptyIcon, '" class="x-tree-node-icon', (a.icon ? " x-tree-node-inline-icon" : ""), (a.iconCls ? " "+a.iconCls : ""), '" unselectable="on">',                         '<a hidefocus="on" class="x-tree-node-anchor" href="', a.href ? a.href : '#', '" tabIndex="1" ',                             a.hrefTarget ? ' target="'+a.hrefTarget+'"' : '', '>',                         '<span unselectable="on">', (c.tpl ? c.tpl.apply(a) : a[c.dataIndex] || c.text), '</span></a>',                     '</td>'         ];         for(i = 1, len = cols.length; i < len; i++){             c = cols[i];             buf.push(                     '<td class="x-treegrid-col ', (c.cls ? c.cls : ''), '">',                         '<div unselectable="on" class="x-treegrid-text"', (c.align ? ' style="text-align: ' + c.align + ';"' : ''), '>',                             (c.tpl ? c.tpl.apply(a) : a[c.dataIndex]),                         '</div>',                     '</td>'             );         }         buf.push(             '</tr><tr class="x-tree-node-ct"><td colspan="', cols.length, '">',             '<table class="x-treegrid-node-ct-table" cellpadding="0" cellspacing="0" style="table-layout: fixed; display: none; width: ', t.innerCt.getWidth() ,'px;"><colgroup>'         );         for(i = 0, len = cols.length; i<len; i++) {             buf.push('<col style="width: ', (cols[i].hidden ? 0 : cols[i].width) ,'px;" />');         }         buf.push('</colgroup></table></td></tr></tbody>');         if(bulkRender !== true && n.nextSibling && n.nextSibling.ui.getEl()){             this.wrap = Ext.DomHelper.insertHtml("beforeBegin", n.nextSibling.ui.getEl(), buf.join(''));         }else{             this.wrap = Ext.DomHelper.insertHtml("beforeEnd", targetNode, buf.join(''));         }         this.elNode = this.wrap.childNodes[0];         this.ctNode = this.wrap.childNodes[1].firstChild.firstChild;         var cs = this.elNode.firstChild.childNodes;         this.indentNode = cs[0];         this.ecNode = cs[1];         this.iconNode = cs[2];         this.anchor = cs[3];         this.textNode = cs[3].firstChild;     },     // private     animExpand : function(cb){         this.ctNode.style.display = "";         Ext.ux.tree.TreeGridNodeUI.superclass.animExpand.call(this, cb);     } }); Ext.ux.tree.TreeGridRootNodeUI = Ext.extend(Ext.tree.TreeNodeUI, {     isTreeGridNodeUI: true,          // private     render : function(){         if(!this.rendered){             this.wrap = this.ctNode = this.node.ownerTree.innerCt.dom;             this.node.expanded = true;         }                  if(Ext.isWebKit) {             // weird table-layout: fixed issue in webkit             var ct = this.ctNode;             ct.style.tableLayout = null;             (function() {                 ct.style.tableLayout = 'fixed';             }).defer(1);         }     },     destroy : function(){         if(this.elNode){             Ext.dd.Registry.unregister(this.elNode.id);         }         delete this.node;     },          collapse : Ext.emptyFn,     expand : Ext.emptyFn });/**  * @class Ext.tree.ColumnResizer  * @extends Ext.util.Observable  */ Ext.tree.ColumnResizer = Ext.extend(Ext.util.Observable, {     /**      * @cfg {Number} minWidth The minimum width the column can be dragged to.      * Defaults to <tt>14</tt>.      */     minWidth: 14,     constructor: function(config){         Ext.apply(this, config);         Ext.tree.ColumnResizer.superclass.constructor.call(this);     },     init : function(tree){         this.tree = tree;         tree.on('render', this.initEvents, this);     },     initEvents : function(tree){         tree.mon(tree.innerHd, 'mousemove', this.handleHdMove, this);         this.tracker = new Ext.dd.DragTracker({             onBeforeStart: this.onBeforeStart.createDelegate(this),             onStart: this.onStart.createDelegate(this),             onDrag: this.onDrag.createDelegate(this),             onEnd: this.onEnd.createDelegate(this),             tolerance: 3,             autoStart: 300         });         this.tracker.initEl(tree.innerHd);         tree.on('beforedestroy', this.tracker.destroy, this.tracker);     },     handleHdMove : function(e, t){         var hw = 5,             x = e.getPageX(),             hd = e.getTarget('.x-treegrid-hd', 3, true);                  if(hd){                                              var r = hd.getRegion(),                 ss = hd.dom.style,                 pn = hd.dom.parentNode;                          if(x - r.left <= hw && hd.dom !== pn.firstChild) {                 var ps = hd.dom.previousSibling;                 while(ps && Ext.fly(ps).hasClass('x-treegrid-hd-hidden')) {                     ps = ps.previousSibling;                 }                 if(ps) {                                         this.activeHd = Ext.get(ps);      ss.cursor = Ext.isWebKit ? 'e-resize' : 'col-resize';                 }             } else if(r.right - x <= hw) {                 var ns = hd.dom;                 while(ns && Ext.fly(ns).hasClass('x-treegrid-hd-hidden')) {                     ns = ns.previousSibling;                 }                 if(ns) {                     this.activeHd = Ext.get(ns);      ss.cursor = Ext.isWebKit ? 'w-resize' : 'col-resize';                                     }             } else{                 delete this.activeHd;                 ss.cursor = '';             }         }     },     onBeforeStart : function(e){         this.dragHd = this.activeHd;         return !!this.dragHd;     },     onStart : function(e){         this.tree.headersDisabled = true;         this.proxy = this.tree.body.createChild({cls:'x-treegrid-resizer'});         this.proxy.setHeight(this.tree.body.getHeight());         var x = this.tracker.getXY()[0];         this.hdX = this.dragHd.getX();         this.hdIndex = this.tree.findHeaderIndex(this.dragHd);         this.proxy.setX(this.hdX);         this.proxy.setWidth(x-this.hdX);         this.maxWidth = this.tree.outerCt.getWidth() - this.tree.innerBody.translatePoints(this.hdX).left;     },     onDrag : function(e){         var cursorX = this.tracker.getXY()[0];         this.proxy.setWidth((cursorX-this.hdX).constrain(this.minWidth, this.maxWidth));     },     onEnd : function(e){         var nw = this.proxy.getWidth(),             tree = this.tree;                  this.proxy.remove();         delete this.dragHd;                  tree.columns[this.hdIndex].width = nw;         tree.updateColumnWidths();                  setTimeout(function(){             tree.headersDisabled = false;         }, 100);     } });Ext.ns('Ext.ux.tree'); /**  * @class Ext.ux.tree.TreeGridSorter  * @extends Ext.tree.TreeSorter  */ Ext.ux.tree.TreeGridSorter = Ext.extend(Ext.tree.TreeSorter, {     /**      * @cfg {Array} sortClasses The CSS classes applied to a header when it is sorted. (defaults to <tt>['sort-asc', 'sort-desc']</tt>)      */     sortClasses : ['sort-asc', 'sort-desc'],     /**      * @cfg {String} sortAscText The text displayed in the 'Sort Ascending' menu item (defaults to <tt>'Sort Ascending'</tt>)      */     sortAscText : 'Sort Ascending',     /**      * @cfg {String} sortDescText The text displayed in the 'Sort Descending' menu item (defaults to <tt>'Sort Descending'</tt>)      */     sortDescText : 'Sort Descending',     constructor : function(tree, config) {         if(!Ext.isObject(config)) {             config = {                 property: tree.columns[0].dataIndex || 'text',                 folderSort: true             }         }         Ext.ux.tree.TreeGridSorter.superclass.constructor.apply(this, arguments);         this.tree = tree;         tree.on('headerclick', this.onHeaderClick, this);         tree.ddAppendOnly = true;         me = this;         this.defaultSortFn = function(n1, n2){             var dsc = me.dir && me.dir.toLowerCase() == 'desc';             var p = me.property || 'text';             var sortType = me.sortType;             var fs = me.folderSort;             var cs = me.caseSensitive === true;             var leafAttr = me.leafAttr || 'leaf';             if(fs){                 if(n1.attributes[leafAttr] && !n2.attributes[leafAttr]){                     return 1;                 }                 if(!n1.attributes[leafAttr] && n2.attributes[leafAttr]){                     return -1;                 }             }          var v1 = sortType ? sortType(n1.attributes[p]) : (cs ? n1.attributes[p] : n1.attributes[p].toUpperCase());          var v2 = sortType ? sortType(n2.attributes[p]) : (cs ? n2.attributes[p] : n2.attributes[p].toUpperCase());          if(v1 < v2){      return dsc ? +1 : -1;      }else if(v1 > v2){      return dsc ? -1 : +1;             }else{           return 0;             }         };         tree.on('afterrender', this.onAfterTreeRender, this, {single: true});         tree.on('headermenuclick', this.onHeaderMenuClick, this);     },     onAfterTreeRender : function() {         var hmenu = this.tree.hmenu;         hmenu.insert(0,             {itemId:'asc', text: this.sortAscText, cls: 'xg-hmenu-sort-asc'},             {itemId:'desc', text: this.sortDescText, cls: 'xg-hmenu-sort-desc'}         );         this.updateSortIcon(0, 'asc');     },     onHeaderMenuClick : function(c, id, index) {         if(id === 'asc' || id === 'desc') {             this.onHeaderClick(c, null, index);             return false;         }     },     onHeaderClick : function(c, el, i) {         if(c && !this.tree.headersDisabled){             var me = this;             me.property = c.dataIndex;             me.dir = c.dir = (c.dir === 'desc' ? 'asc' : 'desc');             me.sortType = c.sortType;             me.caseSensitive === Ext.isBoolean(c.caseSensitive) ? c.caseSensitive : this.caseSensitive;             me.sortFn = c.sortFn || this.defaultSortFn;             this.tree.root.cascade(function(n) {                 if(!n.isLeaf()) {                     me.updateSort(me.tree, n);                 }             });             this.updateSortIcon(i, c.dir);         }     },     // private     updateSortIcon : function(col, dir){         var sc = this.sortClasses;         var hds = this.tree.innerHd.select('td').removeClass(sc);         hds.item(col).addClass(sc[dir == 'desc' ? 1 : 0]);     } });/**  * @class Ext.ux.tree.TreeGridLoader  * @extends Ext.tree.TreeLoader  */ Ext.ux.tree.TreeGridLoader = Ext.extend(Ext.tree.TreeLoader, {     createNode : function(attr) {         if (!attr.uiProvider) {             attr.uiProvider = Ext.ux.tree.TreeGridNodeUI;         }         return Ext.tree.TreeLoader.prototype.createNode.call(this, attr);     } });/**  * @class Ext.ux.tree.TreeGrid  * @extends Ext.tree.TreePanel  *   * @xtype treegrid  */ Ext.ux.tree.TreeGrid = Ext.extend(Ext.tree.TreePanel, {     rootVisible : false,     useArrows : true,     lines : false,     borderWidth : Ext.isBorderBox ? 0 : 2, // the combined left/right border for each cell     cls : 'x-treegrid',     columnResize : true,     enableSort : true,     reserveScrollOffset : true,     enableHdMenu : true,          columnsText : 'Columns',     initComponent : function() {         if(!this.root) {             this.root = new Ext.tree.AsyncTreeNode({text: 'Root'});         }                  // initialize the loader         var l = this.loader;         if(!l){             l = new Ext.ux.tree.TreeGridLoader({                 dataUrl: this.dataUrl,                 requestMethod: this.requestMethod,                 store: this.store             });         }else if(Ext.isObject(l) && !l.load){             l = new Ext.ux.tree.TreeGridLoader(l);         }         else if(l) {             l.createNode = function(attr) {                 if (!attr.uiProvider) {                     attr.uiProvider = Ext.ux.tree.TreeGridNodeUI;                 }                 return Ext.tree.TreeLoader.prototype.createNode.call(this, attr);             }         }         this.loader = l;                                      Ext.ux.tree.TreeGrid.superclass.initComponent.call(this);                                      this.initColumns();                  if(this.enableSort) {             this.treeGridSorter = new Ext.ux.tree.TreeGridSorter(this, this.enableSort);         }                  if(this.columnResize){             this.colResizer = new Ext.tree.ColumnResizer(this.columnResize);             this.colResizer.init(this);         }                  var c = this.columns;         if(!this.internalTpl){                                             this.internalTpl = new Ext.XTemplate(                 '<div class="x-grid3-header">',                     '<div class="x-treegrid-header-inner">',                         '<div class="x-grid3-header-offset">',                             '<table cellspacing="0" cellpadding="0" border="0"><colgroup><tpl for="columns"><col /></tpl></colgroup>',                             '<thead><tr class="x-grid3-hd-row">',                             '<tpl for="columns">',                             '<td class="x-grid3-hd x-grid3-cell x-treegrid-hd" style="text-align: {align};" id="', this.id, '-xlhd-{#}">',                                 '<div class="x-grid3-hd-inner x-treegrid-hd-inner" unselectable="on">',                                      this.enableHdMenu ? '<a class="x-grid3-hd-btn" href="#"></a>' : '',                                      '{header}<img class="x-grid3-sort-icon" src="', Ext.BLANK_IMAGE_URL, '" />',                                  '</div>',                             '</td></tpl>',                             '</tr></thead>',                         '</div></table>',                     '</div></div>',                 '</div>',                 '<div class="x-treegrid-root-node">',                     '<table class="x-treegrid-root-table" cellpadding="0" cellspacing="0" style="table-layout: fixed;"></table>',                 '</div>'             );         }                  if(!this.colgroupTpl) {             this.colgroupTpl = new Ext.XTemplate(                 '<colgroup><tpl for="columns"><col style="width: {width}px"/></tpl></colgroup>'             );         }     },     initColumns : function() {         var cs = this.columns,             len = cs.length,              columns = [],             i, c;         for(i = 0; i < len; i++){             c = cs[i];             if(!c.isColumn) {                 c.xtype = c.xtype ? (/^tg/.test(c.xtype) ? c.xtype : 'tg' + c.xtype) : 'tgcolumn';                 c = Ext.create(c);             }             c.init(this);             columns.push(c);                          if(this.enableSort !== false && c.sortable !== false) {                 c.sortable = true;                 this.enableSort = true;             }         }         this.columns = columns;     },     onRender : function(){         Ext.tree.TreePanel.superclass.onRender.apply(this, arguments);         this.el.addClass('x-treegrid');                  this.outerCt = this.body.createChild({             cls:'x-tree-root-ct x-treegrid-ct ' + (this.useArrows ? 'x-tree-arrows' : this.lines ? 'x-tree-lines' : 'x-tree-no-lines')         });                  this.internalTpl.overwrite(this.outerCt, {columns: this.columns});                  this.mainHd = Ext.get(this.outerCt.dom.firstChild);         this.innerHd = Ext.get(this.mainHd.dom.firstChild);         this.innerBody = Ext.get(this.outerCt.dom.lastChild);         this.innerCt = Ext.get(this.innerBody.dom.firstChild);                  this.colgroupTpl.insertFirst(this.innerCt, {columns: this.columns});                  if(this.hideHeaders){             this.header.dom.style.display = 'none';         }         else if(this.enableHdMenu !== false){             this.hmenu = new Ext.menu.Menu({id: this.id + '-hctx'});             if(this.enableColumnHide !== false){                 this.colMenu = new Ext.menu.Menu({id: this.id + '-hcols-menu'});                 this.colMenu.on({                     scope: this,                     beforeshow: this.beforeColMenuShow,                     itemclick: this.handleHdMenuClick                 });                 this.hmenu.add({                     itemId:'columns',                     hideOnClick: false,                     text: this.columnsText,                     menu: this.colMenu,                     iconCls: 'x-cols-icon'                 });             }             this.hmenu.on('itemclick', this.handleHdMenuClick, this);         }     },     setRootNode : function(node){         node.attributes.uiProvider = Ext.ux.tree.TreeGridRootNodeUI;                 node = Ext.ux.tree.TreeGrid.superclass.setRootNode.call(this, node);         if(this.innerCt) {             this.colgroupTpl.insertFirst(this.innerCt, {columns: this.columns});         }         return node;     },          initEvents : function() {         Ext.ux.tree.TreeGrid.superclass.initEvents.apply(this, arguments);         this.mon(this.innerBody, 'scroll', this.syncScroll, this);         this.mon(this.innerHd, 'click', this.handleHdDown, this);         this.mon(this.mainHd, {             scope: this,             mouseover: this.handleHdOver,             mouseout: this.handleHdOut         });     },          onResize : function(w, h) {         Ext.ux.tree.TreeGrid.superclass.onResize.apply(this, arguments);                  var bd = this.innerBody.dom;         var hd = this.innerHd.dom;         if(!bd){             return;         }         if(Ext.isNumber(h)){             bd.style.height = this.body.getHeight(true) - hd.offsetHeight + 'px';         }         if(Ext.isNumber(w)){                                     var sw = Ext.num(this.scrollOffset, Ext.getScrollBarWidth());             if(this.reserveScrollOffset || ((bd.offsetWidth - bd.clientWidth) > 10)){                 this.setScrollOffset(sw);             }else{                 var me = this;                 setTimeout(function(){                     me.setScrollOffset(bd.offsetWidth - bd.clientWidth > 10 ? sw : 0);                 }, 10);             }         }     },     updateColumnWidths : function() {         var cols = this.columns,             colCount = cols.length,             groups = this.outerCt.query('colgroup'),             groupCount = groups.length,             c, g, i, j;         for(i = 0; i<colCount; i++) {             c = cols[i];             for(j = 0; j<groupCount; j++) {                 g = groups[j];                 g.childNodes[i].style.width = (c.hidden ? 0 : c.width) + 'px';             }         }                  for(i = 0, groups = this.innerHd.query('td'), len = groups.length; i<len; i++) {             c = Ext.fly(groups[i]);             if(cols[i] && cols[i].hidden) {                 c.addClass('x-treegrid-hd-hidden');             }             else {                 c.removeClass('x-treegrid-hd-hidden');             }         }         var tcw = this.getTotalColumnWidth();                                 Ext.fly(this.innerHd.dom.firstChild).setWidth(tcw + (this.scrollOffset || 0));         this.outerCt.select('table').setWidth(tcw);         this.syncHeaderScroll();         },                          getVisibleColumns : function() {         var columns = [],             cs = this.columns,             len = cs.length,             i;                      for(i = 0; i<len; i++) {             if(!cs[i].hidden) {                 columns.push(cs[i]);             }         }                 return columns;     },     getTotalColumnWidth : function() {         var total = 0;         for(var i = 0, cs = this.getVisibleColumns(), len = cs.length; i<len; i++) {             total += cs[i].width;         }         return total;     },     setScrollOffset : function(scrollOffset) {         this.scrollOffset = scrollOffset;                                 this.updateColumnWidths();     },     // private     handleHdDown : function(e, t){         var hd = e.getTarget('.x-treegrid-hd');         if(hd && Ext.fly(t).hasClass('x-grid3-hd-btn')){             var ms = this.hmenu.items,                 cs = this.columns,                 index = this.findHeaderIndex(hd),                 c = cs[index],                 sort = c.sortable;                              e.stopEvent();             Ext.fly(hd).addClass('x-grid3-hd-menu-open');             this.hdCtxIndex = index;                          this.fireEvent('headerbuttonclick', ms, c, hd, index);                          this.hmenu.on('hide', function(){                 Ext.fly(hd).removeClass('x-grid3-hd-menu-open');             }, this, {single:true});                          this.hmenu.show(t, 'tl-bl?');         }         else if(hd) {             var index = this.findHeaderIndex(hd);             this.fireEvent('headerclick', this.columns[index], hd, index);         }     },     // private     handleHdOver : function(e, t){                             var hd = e.getTarget('.x-treegrid-hd');                                 if(hd && !this.headersDisabled){             index = this.findHeaderIndex(hd);             this.activeHdRef = t;             this.activeHdIndex = index;             var el = Ext.get(hd);             this.activeHdRegion = el.getRegion();             el.addClass('x-grid3-hd-over');             this.activeHdBtn = el.child('.x-grid3-hd-btn');             if(this.activeHdBtn){                 this.activeHdBtn.dom.style.height = (hd.firstChild.offsetHeight-1)+'px';             }         }     },          // private     handleHdOut : function(e, t){         var hd = e.getTarget('.x-treegrid-hd');         if(hd && (!Ext.isIE || !e.within(hd, true))){             this.activeHdRef = null;             Ext.fly(hd).removeClass('x-grid3-hd-over');             hd.style.cursor = '';         }     },                          findHeaderIndex : function(hd){         hd = hd.dom || hd;         var cs = hd.parentNode.childNodes;         for(var i = 0, c; c = cs[i]; i++){             if(c == hd){                 return i;             }         }         return -1;     },          // private     beforeColMenuShow : function(){         var cols = this.columns,               colCount = cols.length,             i, c;                                 this.colMenu.removeAll();                             for(i = 1; i < colCount; i++){             c = cols[i];             if(c.hideable !== false){                 this.colMenu.add(new Ext.menu.CheckItem({                     itemId: 'col-' + i,                     text: c.header,                     checked: !c.hidden,                     hideOnClick:false,                     disabled: c.hideable === false                 }));             }         }     },                          // private     handleHdMenuClick : function(item){         var index = this.hdCtxIndex,             id = item.getItemId();                  if(this.fireEvent('headermenuclick', this.columns[index], id, index) !== false) {             index = id.substr(4);             if(index > 0 && this.columns[index]) {                 this.setColumnVisible(index, !item.checked);             }              }                  return true;     },          setColumnVisible : function(index, visible) {         this.columns[index].hidden = !visible;                 this.updateColumnWidths();     },     /**      * Scrolls the grid to the top      */     scrollToTop : function(){         this.innerBody.dom.scrollTop = 0;         this.innerBody.dom.scrollLeft = 0;     },     // private     syncScroll : function(){         this.syncHeaderScroll();         var mb = this.innerBody.dom;         this.fireEvent('bodyscroll', mb.scrollLeft, mb.scrollTop);     },     // private     syncHeaderScroll : function(){         var mb = this.innerBody.dom;         this.innerHd.dom.scrollLeft = mb.scrollLeft;         this.innerHd.dom.scrollLeft = mb.scrollLeft; // second time for IE (1/2 time first fails, other browsers ignore)     },          registerNode : function(n) {         Ext.ux.tree.TreeGrid.superclass.registerNode.call(this, n);         if(!n.uiProvider && !n.isRoot && !n.ui.isTreeGridNodeUI) {             n.ui = new Ext.ux.tree.TreeGridNodeUI(n);         }     } }); Ext.reg('treegrid', Ext.ux.tree.TreeGrid);