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

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.ux.grid.filter.BooleanFilter
  3.  * @extends Ext.ux.grid.filter.Filter
  4.  * Boolean filters use unique radio group IDs (so you can have more than one!)
  5.  * <p><b><u>Example Usage:</u></b></p>
  6.  * <pre><code>    
  7. var filters = new Ext.ux.grid.GridFilters({
  8.     ...
  9.     filters: [{
  10.         // required configs
  11.         type: 'boolean',
  12.         dataIndex: 'visible'
  13.         // optional configs
  14.         defaultValue: null, // leave unselected (false selected by default)
  15.         yesText: 'Yes',     // default
  16.         noText: 'No'        // default
  17.     }]
  18. });
  19.  * </code></pre>
  20.  */
  21. Ext.ux.grid.filter.BooleanFilter = Ext.extend(Ext.ux.grid.filter.Filter, {
  22. /**
  23.  * @cfg {Boolean} defaultValue
  24.  * Set this to null if you do not want either option to be checked by default. Defaults to false.
  25.  */
  26. defaultValue : false,
  27. /**
  28.  * @cfg {String} yesText
  29.  * Defaults to 'Yes'.
  30.  */
  31. yesText : 'Yes',
  32. /**
  33.  * @cfg {String} noText
  34.  * Defaults to 'No'.
  35.  */
  36. noText : 'No',
  37.     /**  
  38.      * @private
  39.      * Template method that is to initialize the filter and install required menu items.
  40.      */
  41.     init : function (config) {
  42.         var gId = Ext.id();
  43. this.options = [
  44. new Ext.menu.CheckItem({text: this.yesText, group: gId, checked: this.defaultValue === true}),
  45. new Ext.menu.CheckItem({text: this.noText, group: gId, checked: this.defaultValue === false})];
  46. this.menu.add(this.options[0], this.options[1]);
  47. for(var i=0; i<this.options.length; i++){
  48. this.options[i].on('click', this.fireUpdate, this);
  49. this.options[i].on('checkchange', this.fireUpdate, this);
  50. }
  51. },
  52.     /**
  53.      * @private
  54.      * Template method that is to get and return the value of the filter.
  55.      * @return {String} The value of this filter
  56.      */
  57.     getValue : function () {
  58. return this.options[0].checked;
  59. },
  60.     /**
  61.      * @private
  62.      * Template method that is to set the value of the filter.
  63.      * @param {Object} value The value to set the filter
  64.      */
  65. setValue : function (value) {
  66. this.options[value ? 0 : 1].setChecked(true);
  67. },
  68.     /**
  69.      * @private
  70.      * Template method that is to get and return serialized filter data for
  71.      * transmission to the server.
  72.      * @return {Object/Array} An object or collection of objects containing
  73.      * key value pairs representing the current configuration of the filter.
  74.      */
  75.     getSerialArgs : function () {
  76. var args = {type: 'boolean', value: this.getValue()};
  77. return args;
  78. },
  79.     /**
  80.      * Template method that is to validate the provided Ext.data.Record
  81.      * against the filters configuration.
  82.      * @param {Ext.data.Record} record The record to validate
  83.      * @return {Boolean} true if the record is valid within the bounds
  84.      * of the filter, false otherwise.
  85.      */
  86.     validateRecord : function (record) {
  87. return record.get(this.dataIndex) == this.getValue();
  88. }
  89. });