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

JavaScript

开发平台:

JavaScript

  1. /*!  * Ext JS Library 3.1.0  * Copyright(c) 2006-2009 Ext JS, LLC  * licensing@extjs.com  * http://www.extjs.com/license  */ /**
  2.  * @class Ext.grid.Column
  3.  * <p>This class encapsulates column configuration data to be used in the initialization of a
  4.  * {@link Ext.grid.ColumnModel ColumnModel}.</p>
  5.  * <p>While subclasses are provided to render data in different ways, this class renders a passed
  6.  * data field unchanged and is usually used for textual columns.</p>
  7.  */
  8. Ext.grid.Column = Ext.extend(Object, {
  9.     /**
  10.      * @cfg {Boolean} editable Optional. Defaults to <tt>true</tt>, enabling the configured
  11.      * <tt>{@link #editor}</tt>.  Set to <tt>false</tt> to initially disable editing on this column.
  12.      * The initial configuration may be dynamically altered using
  13.      * {@link Ext.grid.ColumnModel}.{@link Ext.grid.ColumnModel#setEditable setEditable()}.
  14.      */
  15.     /**
  16.      * @cfg {String} id Optional. A name which identifies this column (defaults to the column's initial
  17.      * ordinal position.) The <tt>id</tt> is used to create a CSS <b>class</b> name which is applied to all
  18.      * table cells (including headers) in that column (in this context the <tt>id</tt> does not need to be
  19.      * unique). The class name takes the form of <pre>x-grid3-td-<b>id</b></pre>
  20.      * Header cells will also receive this class name, but will also have the class <pre>x-grid3-hd</pre>
  21.      * So, to target header cells, use CSS selectors such as:<pre>.x-grid3-hd-row .x-grid3-td-<b>id</b></pre>
  22.      * The {@link Ext.grid.GridPanel#autoExpandColumn} grid config option references the column via this
  23.      * unique identifier.
  24.      */
  25.     /**
  26.      * @cfg {String} header Optional. The header text to be used as innerHTML
  27.      * (html tags are accepted) to display in the Grid view.  <b>Note</b>: to
  28.      * have a clickable header with no text displayed use <tt>'&#160;'</tt>.
  29.      */
  30.     /**
  31.      * @cfg {Boolean} groupable Optional. If the grid is being rendered by an {@link Ext.grid.GroupingView}, this option
  32.      * may be used to disable the header menu item to group by the column selected. Defaults to <tt>true</tt>,
  33.      * which enables the header menu group option.  Set to <tt>false</tt> to disable (but still show) the
  34.      * group option in the header menu for the column. See also <code>{@link #groupName}</code>.
  35.      */
  36.     /**
  37.      * @cfg {String} groupName Optional. If the grid is being rendered by an {@link Ext.grid.GroupingView}, this option
  38.      * may be used to specify the text with which to prefix the group field value in the group header line.
  39.      * See also {@link #groupRenderer} and
  40.      * {@link Ext.grid.GroupingView}.{@link Ext.grid.GroupingView#showGroupName showGroupName}.
  41.      */
  42.     /**
  43.      * @cfg {Function} groupRenderer <p>Optional. If the grid is being rendered by an {@link Ext.grid.GroupingView}, this option
  44.      * may be used to specify the function used to format the grouping field value for display in the group
  45.      * {@link #groupName header}.  If a <tt><b>groupRenderer</b></tt> is not specified, the configured
  46.      * <tt><b>{@link #renderer}</b></tt> will be called; if a <tt><b>{@link #renderer}</b></tt> is also not specified
  47.      * the new value of the group field will be used.</p>
  48.      * <p>The called function (either the <tt><b>groupRenderer</b></tt> or <tt><b>{@link #renderer}</b></tt>) will be
  49.      * passed the following parameters:
  50.      * <div class="mdetail-params"><ul>
  51.      * <li><b>v</b> : Object<p class="sub-desc">The new value of the group field.</p></li>
  52.      * <li><b>unused</b> : undefined<p class="sub-desc">Unused parameter.</p></li>
  53.      * <li><b>r</b> : Ext.data.Record<p class="sub-desc">The Record providing the data
  54.      * for the row which caused group change.</p></li>
  55.      * <li><b>rowIndex</b> : Number<p class="sub-desc">The row index of the Record which caused group change.</p></li>
  56.      * <li><b>colIndex</b> : Number<p class="sub-desc">The column index of the group field.</p></li>
  57.      * <li><b>ds</b> : Ext.data.Store<p class="sub-desc">The Store which is providing the data Model.</p></li>
  58.      * </ul></div></p>
  59.      * <p>The function should return a string value.</p>
  60.      */
  61.     /**
  62.      * @cfg {String} emptyGroupText Optional. If the grid is being rendered by an {@link Ext.grid.GroupingView}, this option
  63.      * may be used to specify the text to display when there is an empty group value. Defaults to the
  64.      * {@link Ext.grid.GroupingView}.{@link Ext.grid.GroupingView#emptyGroupText emptyGroupText}.
  65.      */
  66.     /**
  67.      * @cfg {String} dataIndex <p><b>Required</b>. The name of the field in the
  68.      * grid's {@link Ext.data.Store}'s {@link Ext.data.Record} definition from
  69.      * which to draw the column's value.</p>
  70.      */
  71.     /**
  72.      * @cfg {Number} width
  73.      * Optional. The initial width in pixels of the column.
  74.      * The width of each column can also be affected if any of the following are configured:
  75.      * <div class="mdetail-params"><ul>
  76.      * <li>{@link Ext.grid.GridPanel}.<tt>{@link Ext.grid.GridPanel#autoExpandColumn autoExpandColumn}</tt></li>
  77.      * <li>{@link Ext.grid.GridView}.<tt>{@link Ext.grid.GridView#forceFit forceFit}</tt>
  78.      * <div class="sub-desc">
  79.      * <p>By specifying <tt>forceFit:true</tt>, {@link #fixed non-fixed width} columns will be
  80.      * re-proportioned (based on the relative initial widths) to fill the width of the grid so
  81.      * that no horizontal scrollbar is shown.</p>
  82.      * </div></li>
  83.      * <li>{@link Ext.grid.GridView}.<tt>{@link Ext.grid.GridView#autoFill autoFill}</tt></li>
  84.      * <li>{@link Ext.grid.GridPanel}.<tt>{@link Ext.grid.GridPanel#minColumnWidth minColumnWidth}</tt></li>
  85.      * <br><p><b>Note</b>: when the width of each column is determined, a space on the right side
  86.      * is reserved for the vertical scrollbar.  The
  87.      * {@link Ext.grid.GridView}.<tt>{@link Ext.grid.GridView#scrollOffset scrollOffset}</tt>
  88.      * can be modified to reduce or eliminate the reserved offset.</p>
  89.      */
  90.     /**
  91.      * @cfg {Boolean} sortable Optional. <tt>true</tt> if sorting is to be allowed on this column.
  92.      * Defaults to the value of the <code>{@link Ext.grid.ColumnModel#defaultSortable}</code> property.
  93.      * Whether local/remote sorting is used is specified in <code>{@link Ext.data.Store#remoteSort}</code>.
  94.      */
  95.     /**
  96.      * @cfg {Boolean} fixed Optional. <tt>true</tt> if the column width cannot be changed.  Defaults to <tt>false</tt>.
  97.      */
  98.     /**
  99.      * @cfg {Boolean} resizable Optional. <tt>false</tt> to disable column resizing. Defaults to <tt>true</tt>.
  100.      */
  101.     /**
  102.      * @cfg {Boolean} menuDisabled Optional. <tt>true</tt> to disable the column menu. Defaults to <tt>false</tt>.
  103.      */
  104.     /**
  105.      * @cfg {Boolean} hidden
  106.      * Optional. <tt>true</tt> to initially hide this column. Defaults to <tt>false</tt>.
  107.      * A hidden column {@link Ext.grid.GridPanel#enableColumnHide may be shown via the header row menu}.
  108.      * If a column is never to be shown, simply do not include this column in the Column Model at all. 
  109.      */
  110.     /**
  111.      * @cfg {String} tooltip Optional. A text string to use as the column header's tooltip.  If Quicktips
  112.      * are enabled, this value will be used as the text of the quick tip, otherwise it will be set as the
  113.      * header's HTML title attribute. Defaults to ''.
  114.      */
  115.     /**
  116.      * @cfg {Mixed} renderer
  117.      * <p>For an alternative to specifying a renderer see <code>{@link #xtype}</code></p>
  118.      * <p>Optional. A renderer is an 'interceptor' method which can be used transform data (value,
  119.      * appearance, etc.) before it is rendered). This may be specified in either of three ways:
  120.      * <div class="mdetail-params"><ul>
  121.      * <li>A renderer function used to return HTML markup for a cell given the cell's data value.</li>
  122.      * <li>A string which references a property name of the {@link Ext.util.Format} class which
  123.      * provides a renderer function.</li>
  124.      * <li>An object specifying both the renderer function, and its execution scope (<tt><b>this</b></tt>
  125.      * reference) e.g.:<pre style="margin-left:1.2em"><code>
  126. {
  127.     fn: this.gridRenderer,
  128.     scope: this
  129. }
  130. </code></pre></li></ul></div>
  131.      * If not specified, the default renderer uses the raw data value.</p>
  132.      * <p>For information about the renderer function (passed parameters, etc.), see
  133.      * {@link Ext.grid.ColumnModel#setRenderer}. An example of specifying renderer function inline:</p><pre><code>
  134. var companyColumn = {
  135.    header: 'Company Name',
  136.    dataIndex: 'company',
  137.    renderer: function(value, metaData, record, rowIndex, colIndex, store) {
  138.       // provide the logic depending on business rules
  139.       // name of your own choosing to manipulate the cell depending upon
  140.       // the data in the underlying Record object.
  141.       if (value == 'whatever') {
  142.           //metaData.css : String : A CSS class name to add to the TD element of the cell.
  143.           //metaData.attr : String : An html attribute definition string to apply to
  144.           //                         the data container element within the table
  145.           //                         cell (e.g. 'style="color:red;"').
  146.           metaData.css = 'name-of-css-class-you-will-define';
  147.       }
  148.       return value;
  149.    }
  150. }
  151.      * </code></pre>
  152.      * See also {@link #scope}.
  153.      */
  154.     /**
  155.      * @cfg {String} xtype Optional. A String which references a predefined {@link Ext.grid.Column} subclass
  156.      * type which is preconfigured with an appropriate <code>{@link #renderer}</code> to be easily
  157.      * configured into a ColumnModel. The predefined {@link Ext.grid.Column} subclass types are:
  158.      * <div class="mdetail-params"><ul>
  159.      * <li><b><tt>gridcolumn</tt></b> : {@link Ext.grid.Column} (<b>Default</b>)<p class="sub-desc"></p></li>
  160.      * <li><b><tt>booleancolumn</tt></b> : {@link Ext.grid.BooleanColumn}<p class="sub-desc"></p></li>
  161.      * <li><b><tt>numbercolumn</tt></b> : {@link Ext.grid.NumberColumn}<p class="sub-desc"></p></li>
  162.      * <li><b><tt>datecolumn</tt></b> : {@link Ext.grid.DateColumn}<p class="sub-desc"></p></li>
  163.      * <li><b><tt>templatecolumn</tt></b> : {@link Ext.grid.TemplateColumn}<p class="sub-desc"></p></li>
  164.      * </ul></div>
  165.      * <p>Configuration properties for the specified <code>xtype</code> may be specified with
  166.      * the Column configuration properties, for example:</p>
  167.      * <pre><code>
  168. var grid = new Ext.grid.GridPanel({
  169.     ...
  170.     columns: [{
  171.         header: 'Last Updated',
  172.         dataIndex: 'lastChange',
  173.         width: 85,
  174.         sortable: true,
  175.         //renderer: Ext.util.Format.dateRenderer('m/d/Y'),
  176.         xtype: 'datecolumn', // use xtype instead of renderer
  177.         format: 'M/d/Y' // configuration property for {@link Ext.grid.DateColumn}
  178.     }, {
  179.         ...
  180.     }]
  181. });
  182.      * </code></pre>
  183.      */
  184.     /**
  185.      * @cfg {Object} scope Optional. The scope (<tt><b>this</b></tt> reference) in which to execute the
  186.      * renderer.  Defaults to the Column configuration object.
  187.      */
  188.     /**
  189.      * @cfg {String} align Optional. Set the CSS text-align property of the column.  Defaults to undefined.
  190.      */
  191.     /**
  192.      * @cfg {String} css Optional. An inline style definition string which is applied to all table cells in the column
  193.      * (excluding headers). Defaults to undefined.
  194.      */
  195.     /**
  196.      * @cfg {Boolean} hideable Optional. Specify as <tt>false</tt> to prevent the user from hiding this column
  197.      * (defaults to true).  To disallow column hiding globally for all columns in the grid, use
  198.      * {@link Ext.grid.GridPanel#enableColumnHide} instead.
  199.      */
  200.     /**
  201.      * @cfg {Ext.form.Field} editor Optional. The {@link Ext.form.Field} to use when editing values in this column
  202.      * if editing is supported by the grid. See <tt>{@link #editable}</tt> also.
  203.      */
  204.     /**
  205.      * @private
  206.      * @cfg {Boolean} isColumn
  207.      * Used by ColumnModel setConfig method to avoid reprocessing a Column
  208.      * if <code>isColumn</code> is not set ColumnModel will recreate a new Ext.grid.Column
  209.      * Defaults to true.
  210.      */
  211.     isColumn : true,
  212.     
  213.     constructor : function(config){
  214.         Ext.apply(this, config);
  215.         if(Ext.isString(this.renderer)){
  216.             this.renderer = Ext.util.Format[this.renderer];
  217.         }else if(Ext.isObject(this.renderer)){
  218.             this.scope = this.renderer.scope;
  219.             this.renderer = this.renderer.fn;
  220.         }
  221.         if(!this.scope){
  222.             this.scope = this;
  223.         }
  224.         if(this.editor){
  225.             this.editor = Ext.create(this.editor, 'textfield');
  226.         }
  227.     },
  228.     /**
  229.      * Optional. A function which returns displayable data when passed the following parameters:
  230.      * <div class="mdetail-params"><ul>
  231.      * <li><b>value</b> : Object<p class="sub-desc">The data value for the cell.</p></li>
  232.      * <li><b>metadata</b> : Object<p class="sub-desc">An object in which you may set the following attributes:<ul>
  233.      * <li><b>css</b> : String<p class="sub-desc">A CSS class name to add to the cell's TD element.</p></li>
  234.      * <li><b>attr</b> : String<p class="sub-desc">An HTML attribute definition string to apply to the data container
  235.      * element <i>within</i> the table cell (e.g. 'style="color:red;"').</p></li></ul></p></li>
  236.      * <li><b>record</b> : Ext.data.record<p class="sub-desc">The {@link Ext.data.Record} from which the data was
  237.      * extracted.</p></li>
  238.      * <li><b>rowIndex</b> : Number<p class="sub-desc">Row index</p></li>
  239.      * <li><b>colIndex</b> : Number<p class="sub-desc">Column index</p></li>
  240.      * <li><b>store</b> : Ext.data.Store<p class="sub-desc">The {@link Ext.data.Store} object from which the Record
  241.      * was extracted.</p></li>
  242.      * </ul></div>
  243.      * @property renderer
  244.      * @type Function
  245.      */
  246.     renderer : function(value){
  247.         if(Ext.isString(value) && value.length < 1){
  248.             return '&#160;';
  249.         }
  250.         return value;
  251.     },
  252.     // private
  253.     getEditor: function(rowIndex){
  254.         return this.editable !== false ? this.editor : null;
  255.     },
  256.     /**
  257.      * Returns the {@link Ext.Editor editor} defined for this column that was created to wrap the {@link Ext.form.Field Field}
  258.      * used to edit the cell.
  259.      * @param {Number} rowIndex The row index
  260.      * @return {Ext.Editor}
  261.      */
  262.     getCellEditor: function(rowIndex){
  263.         var editor = this.getEditor(rowIndex);
  264.         if(editor){
  265.             if(!editor.startEdit){
  266.                 if(!editor.gridEditor){
  267.                     editor.gridEditor = new Ext.grid.GridEditor(editor);
  268.                 }
  269.                 return editor.gridEditor;
  270.             }else if(editor.startEdit){
  271.                 return editor;
  272.             }
  273.         }
  274.         return null;
  275.     }
  276. });
  277. /**
  278.  * @class Ext.grid.BooleanColumn
  279.  * @extends Ext.grid.Column
  280.  * <p>A Column definition class which renders boolean data fields.  See the {@link Ext.grid.Column#xtype xtype}
  281.  * config option of {@link Ext.grid.Column} for more details.</p>
  282.  */
  283. Ext.grid.BooleanColumn = Ext.extend(Ext.grid.Column, {
  284.     /**
  285.      * @cfg {String} trueText
  286.      * The string returned by the renderer when the column value is not falsey (defaults to <tt>'true'</tt>).
  287.      */
  288.     trueText: 'true',
  289.     /**
  290.      * @cfg {String} falseText
  291.      * The string returned by the renderer when the column value is falsey (but not undefined) (defaults to
  292.      * <tt>'false'</tt>).
  293.      */
  294.     falseText: 'false',
  295.     /**
  296.      * @cfg {String} undefinedText
  297.      * The string returned by the renderer when the column value is undefined (defaults to <tt>'&#160;'</tt>).
  298.      */
  299.     undefinedText: '&#160;',
  300.     constructor: function(cfg){
  301.         Ext.grid.BooleanColumn.superclass.constructor.call(this, cfg);
  302.         var t = this.trueText, f = this.falseText, u = this.undefinedText;
  303.         this.renderer = function(v){
  304.             if(v === undefined){
  305.                 return u;
  306.             }
  307.             if(!v || v === 'false'){
  308.                 return f;
  309.             }
  310.             return t;
  311.         };
  312.     }
  313. });
  314. /**
  315.  * @class Ext.grid.NumberColumn
  316.  * @extends Ext.grid.Column
  317.  * <p>A Column definition class which renders a numeric data field according to a {@link #format} string.  See the
  318.  * {@link Ext.grid.Column#xtype xtype} config option of {@link Ext.grid.Column} for more details.</p>
  319.  */
  320. Ext.grid.NumberColumn = Ext.extend(Ext.grid.Column, {
  321.     /**
  322.      * @cfg {String} format
  323.      * A formatting string as used by {@link Ext.util.Format#number} to format a numeric value for this Column
  324.      * (defaults to <tt>'0,000.00'</tt>).
  325.      */
  326.     format : '0,000.00',
  327.     constructor: function(cfg){
  328.         Ext.grid.NumberColumn.superclass.constructor.call(this, cfg);
  329.         this.renderer = Ext.util.Format.numberRenderer(this.format);
  330.     }
  331. });
  332. /**
  333.  * @class Ext.grid.DateColumn
  334.  * @extends Ext.grid.Column
  335.  * <p>A Column definition class which renders a passed date according to the default locale, or a configured
  336.  * {@link #format}. See the {@link Ext.grid.Column#xtype xtype} config option of {@link Ext.grid.Column}
  337.  * for more details.</p>
  338.  */
  339. Ext.grid.DateColumn = Ext.extend(Ext.grid.Column, {
  340.     /**
  341.      * @cfg {String} format
  342.      * A formatting string as used by {@link Date#format} to format a Date for this Column
  343.      * (defaults to <tt>'m/d/Y'</tt>).
  344.      */
  345.     format : 'm/d/Y',
  346.     constructor: function(cfg){
  347.         Ext.grid.DateColumn.superclass.constructor.call(this, cfg);
  348.         this.renderer = Ext.util.Format.dateRenderer(this.format);
  349.     }
  350. });
  351. /**
  352.  * @class Ext.grid.TemplateColumn
  353.  * @extends Ext.grid.Column
  354.  * <p>A Column definition class which renders a value by processing a {@link Ext.data.Record Record}'s
  355.  * {@link Ext.data.Record#data data} using a {@link #tpl configured} {@link Ext.XTemplate XTemplate}.
  356.  * See the {@link Ext.grid.Column#xtype xtype} config option of {@link Ext.grid.Column} for more
  357.  * details.</p>
  358.  */
  359. Ext.grid.TemplateColumn = Ext.extend(Ext.grid.Column, {
  360.     /**
  361.      * @cfg {String/XTemplate} tpl
  362.      * An {@link Ext.XTemplate XTemplate}, or an XTemplate <i>definition string</i> to use to process a
  363.      * {@link Ext.data.Record Record}'s {@link Ext.data.Record#data data} to produce a column's rendered value.
  364.      */
  365.     constructor: function(cfg){
  366.         Ext.grid.TemplateColumn.superclass.constructor.call(this, cfg);
  367.         var tpl = (!Ext.isPrimitive(this.tpl) && this.tpl.compile) ? this.tpl : new Ext.XTemplate(this.tpl);
  368.         this.renderer = function(value, p, r){
  369.             return tpl.apply(r.data);
  370.         };
  371.         this.tpl = tpl;
  372.     }
  373. });
  374. /*
  375.  * @property types
  376.  * @type Object
  377.  * @member Ext.grid.Column
  378.  * @static
  379.  * <p>An object containing predefined Column classes keyed by a mnemonic code which may be referenced
  380.  * by the {@link Ext.grid.ColumnModel#xtype xtype} config option of ColumnModel.</p>
  381.  * <p>This contains the following properties</p><div class="mdesc-details"><ul>
  382.  * <li>gridcolumn : <b>{@link Ext.grid.Column Column constructor}</b></li>
  383.  * <li>booleancolumn : <b>{@link Ext.grid.BooleanColumn BooleanColumn constructor}</b></li>
  384.  * <li>numbercolumn : <b>{@link Ext.grid.NumberColumn NumberColumn constructor}</b></li>
  385.  * <li>datecolumn : <b>{@link Ext.grid.DateColumn DateColumn constructor}</b></li>
  386.  * <li>templatecolumn : <b>{@link Ext.grid.TemplateColumn TemplateColumn constructor}</b></li>
  387.  * </ul></div>
  388.  */
  389. Ext.grid.Column.types = {
  390.     gridcolumn : Ext.grid.Column,
  391.     booleancolumn: Ext.grid.BooleanColumn,
  392.     numbercolumn: Ext.grid.NumberColumn,
  393.     datecolumn: Ext.grid.DateColumn,
  394.     templatecolumn: Ext.grid.TemplateColumn
  395. };