Javascript.RU

Создать новую тему Ответ
 
Опции темы Искать в теме
  #1 (permalink)  
Старый 10.01.2014, 10:18
Новичок на форуме
Отправить личное сообщение для AlexTIX Посмотреть профиль Найти все сообщения от AlexTIX
 
Регистрация: 15.05.2013
Сообщений: 9

Фильтры в гриде
Добрый день форумчане. Может кто поможет с реализацией такого фильтра. Нужно, чтобы фильтр выглядел как фильтр типа list, но фильтровал как фильтр типа string, т.е. значения для фильтрации уже введены в фильтре. Если не понятно объяснил, извиняюсь. На примере моей таблицы. Нужно, чтобы в колонке "Аудио" был фильтр типа list, содержащий такие значения как rus, ukr и т.д. и фильтровал таблицу по этим значениям.
Ответить с цитированием
  #2 (permalink)  
Старый 14.01.2014, 10:56
Новичок на форуме
Отправить личное сообщение для AlexTIX Посмотреть профиль Найти все сообщения от AlexTIX
 
Регистрация: 15.05.2013
Сообщений: 9

Есть два файла: StringFilter.js, содержит код:
init : function (config) {
        Ext.applyIf(config, {
            enableKeyEvents: true,
            labelCls: 'ux-rangemenu-icon ' + this.iconCls,
            hideEmptyLabel: false,
            labelSeparator: '',
            labelWidth: 29,
            listeners: {
                scope: this,
                keyup: this.onInputKeyUp,
                el: {
                    click: function(e) {
                        e.stopPropagation();
                    }
                }
            }
        });

        this.inputItem = Ext.create('Ext.form.field.Text', config);
        this.menu.add(this.inputItem);
        this.menu.showSeparator = false;
        this.updateTask = Ext.create('Ext.util.DelayedTask', this.fireUpdate, this);
    },

и ListFilter.js, содержит код:
init : function (config) {
        this.dt = Ext.create('Ext.util.DelayedTask', this.fireUpdate, this);
    },
.
Может над ними поколдовать? На верном ли я пути?
Ответить с цитированием
  #3 (permalink)  
Старый 14.01.2014, 15:20
Новичок на форуме
Отправить личное сообщение для AlexTIX Посмотреть профиль Найти все сообщения от AlexTIX
 
Регистрация: 15.05.2013
Сообщений: 9

Короче мне надо изменить код файла ListFilter.js таким образом, чтобы фильтрация происходила не по целому слову в выпадающем списке, а по нескольким буквам. Привожу код файла полностью:
/**
 * List filters are able to be preloaded/backed by an Ext.data.Store to load
 * their options the first time they are shown. ListFilter utilizes the
 * {@link Ext.ux.grid.menu.ListMenu} component.
 *
 * List filters are also able to create their own list of values from  all unique values of
 * the specified {@link #dataIndex} field in the store at first time of filter invocation.
 *
 * Although not shown here, this class accepts all configuration options
 * for {@link Ext.ux.grid.menu.ListMenu}.
 *
 * Example Usage:
 *
 *     var filters = Ext.create('Ext.ux.grid.GridFilters', {
 *         ...
 *         filters: [{
 *             type: 'list',
 *             dataIndex: 'size',
 *             phpMode: true,
 *             // options will be used as data to implicitly creates an ArrayStore
 *             options: ['extra small', 'small', 'medium', 'large', 'extra large']
 *         }]
 *     });
 *
 */
Ext.define('Ext.ux.grid.filter.ListFilter', {
    extend: 'Ext.ux.grid.filter.Filter',
    alias: 'gridfilter.list',

    /**
     * @cfg {Array} [options]
     * `data` to be used to implicitly create a data store
     * to back this list when the data source is **local**. If the
     * data for the list is remote, use the {@link #store}
     * config instead.
     *
     * If neither store nor {@link #options} is specified, then the choices list is automatically
     * populated from all unique values of the specified {@link #dataIndex} field in the store at first
     * time of filter invocation.
     *
     * Each item within the provided array may be in one of the
     * following formats:
     *
     *   - **Array** :
     *
     *         options: [
     *             [11, 'extra small'],
     *             [18, 'small'],
     *             [22, 'medium'],
     *             [35, 'large'],
     *             [44, 'extra large']
     *         ]
     *
     *   - **Object** :
     *
     *         labelField: 'name', // override default of 'text'
     *         options: [
     *             {id: 11, name:'extra small'},
     *             {id: 18, name:'small'},
     *             {id: 22, name:'medium'},
     *             {id: 35, name:'large'},
     *             {id: 44, name:'extra large'}
     *         ]
     * 
     *   - **String** :
     *
     *         options: ['extra small', 'small', 'medium', 'large', 'extra large']
     *
     */
    /**
     * @cfg {Boolean} phpMode
     * Adjust the format of this filter. Defaults to false.
     *
     * When GridFilters `@cfg encode = false` (default):
     *
     *     // phpMode == false (default):
     *     filter[0][data][type] list
     *     filter[0][data][value] value1
     *     filter[0][data][value] value2
     *     filter[0][field] prod
     *
     *     // phpMode == true:
     *     filter[0][data][type] list
     *     filter[0][data][value] value1, value2
     *     filter[0][field] prod
     *
     * When GridFilters `@cfg encode = true`:
     *
     *     // phpMode == false (default):
     *     filter : [{"type":"list","value":["small","medium"],"field":"size"}]
     *
     *     // phpMode == true:
     *     filter : [{"type":"list","value":"small,medium","field":"size"}]
     *
     */
    phpMode : false,
    /**
     * @cfg {Ext.data.Store} [store]
     * The {@link Ext.data.Store} this list should use as its data source
     * when the data source is **remote**. If the data for the list
     * is local, use the {@link #options} config instead.
     *
     * If neither store nor {@link #options} is specified, then the choices list is automatically
     * populated from all unique values of the specified {@link #dataIndex} field in the store at first
     * time of filter invocation.
     */

    /**
     * @private
     * Template method that is to initialize the filter.
     * @param {Object} config
     */
    init : function (config) {
        this.dt = Ext.create('Ext.util.DelayedTask', this.fireUpdate, this);
    },

    /**
     * @private @override
     * Creates the Menu for this filter.
     * @param {Object} config Filter configuration
     * @return {Ext.menu.Menu}
     */
    createMenu: function(config) {
        var menu = Ext.create('Ext.ux.grid.menu.ListMenu', config);
        menu.on('checkchange', this.onCheckChange, this);
        return menu;
    },

    /**
     * @private
     * Template method that is to get and return the value of the filter.
     * @return {String} The value of this filter
     */
    getValue : function () {
        return this.menu.getSelected();
    },
    /**
     * @private
     * Template method that is to set the value of the filter.
     * @param {Object} value The value to set the filter
     */
    setValue : function (value) {
        this.menu.setSelected(value);
        this.fireEvent('update', this);
    },

    /**
     * Template method that is to return true if the filter
     * has enough configuration information to be activated.
     * @return {Boolean}
     */
    isActivatable : function () {
        return this.getValue().length > 0;
    },

    /**
     * @private
     * Template method that is to get and return serialized filter data for
     * transmission to the server.
     * @return {Object/Array} An object or collection of objects containing
     * key value pairs representing the current configuration of the filter.
     */
    getSerialArgs : function () {
        return {type: 'list', value: this.phpMode ? this.getValue().join(',') : this.getValue()};
    },

    /** @private */
    onCheckChange : function(){
        this.dt.delay(this.updateBuffer);
    },


    /**
     * Template method that is to validate the provided Ext.data.Record
     * against the filters configuration.
     * @param {Ext.data.Record} record The record to validate
     * @return {Boolean} true if the record is valid within the bounds
     * of the filter, false otherwise.
     */
    validateRecord : function (record) {
        var valuesArray = this.getValue();
		var val = record.get(this.dataIndex);
        return Ext.Array.indexOf(valuesArray, val) > -1;
    }
});
.
Надеюсь на помощь специалистов js.
Ответить с цитированием
  #4 (permalink)  
Старый 15.01.2014, 10:28
Новичок на форуме
Отправить личное сообщение для AlexTIX Посмотреть профиль Найти все сообщения от AlexTIX
 
Регистрация: 15.05.2013
Сообщений: 9

Упростим задание. Нужно переменную var в validateRecord сравнить со значением options переменной filters. Как это правильно сделать.
Ответить с цитированием
  #5 (permalink)  
Старый 15.01.2014, 17:25
Новичок на форуме
Отправить личное сообщение для AlexTIX Посмотреть профиль Найти все сообщения от AlexTIX
 
Регистрация: 15.05.2013
Сообщений: 9

Вопрос практически решен, тему можно закрывать.
Ответить с цитированием
Ответ



Опции темы Искать в теме
Искать в теме:

Расширенный поиск


Похожие темы
Тема Автор Раздел Ответов Последнее сообщение
Присвоить каждому диву в гриде значение определенного времени Semandra Общие вопросы Javascript 0 26.02.2013 17:45
Сортировка записей в гриде (древовидная структура) madmis Общие вопросы Javascript 1 07.06.2012 16:35
Подсвечивание строк в гриде lastbronetrain ExtJS 5 15.12.2010 22:42
Как скрыть колонку в гриде serega063 ExtJS 2 16.07.2010 15:59
Фильтры IE и обработчики событий IE6 mexoboy Internet Explorer 6 25.05.2010 16:51