-
25 Feb 2012 11:41 AM #151
Use with Columngridheader AND LockingGridView
Use with Columngridheader AND LockingGridView
Nice plugin.
Does this plugin works with Columngridheader AND LockingGridView?
If anyone worked on this plugin with Columngridheader AND LockingGridView,
could you please let me know.
Thank you.
-
4 Mar 2012 1:25 AM #152
-
23 Jul 2012 1:17 PM #153
using combo box as a filter
using combo box as a filter
Hi,
I am using a combo box as a filter in a column. When I select a value from the combo box, it does not show up and I see a blank value selected. Any idea why this is happening?
Thanks
Sofia
-
8 Aug 2012 6:26 AM #154
I'm using this plugin with multiple filters per field (and local stores for comboboxes) in ext 4.1.1.
I made two changes to this plugin that might be useful for other folks:
A lot of people use the anyMatch plugin for comboboxes, so I wanted it here for consistency. If we add this to the library, we should make it a property upon initializing it instead of just hardcoding it to true though.Code:var newSf = new Ext.util.Filter({ root: this.filterRoot, property: fn, value: filters[fn], anyMatch: true, label: field.fieldLabel });
Within 'renderFilters' function:
I pass my initial values for combobox filters via the value property:Code:for(var ci = 0; ci < fca.length; ci++) { var fc = fca[ci]; Ext.applyIf(fc, { filterName: column.dataIndex, fieldLabel: column.text || column.header, hideLabel: fca.length == 1 }); var initValue = Ext.isEmpty(filters[fc.filterName]) ? null : filters[fc.filterName]; if (initValue == undefined || initValue == null) { initValue = fc.value; } Ext.apply(fc, { cls: this.filterFieldCls, itemId: fc.filterName, anchor: '-1' }); var filterField = Ext.ComponentManager.create(fc); filterField.column = column; this.setFieldValue(filterField, initValue); this.fields[filterField.filterName] = filterField; filterContainerConfig.items.push(filterField); }
{xtype: 'combo', value: 'contains', store: [..]...}
and that change was necessary so it actually picked up that initial value.
-
14 Nov 2012 2:12 AM #155
I tried to implement Filter as first row inside the grid with the help of this plug in in Ext js 4.1. But this is not working. Can you please let me know whether this plugin will work for 4.1 or not
-
14 Nov 2012 2:13 AM #156
I tried to implement Filter as first row inside the grid with the help of this plug in in Ext js 4.1. But this is not working. Can you please let me know whether this plugin will work for 4.1 or not
-
14 Nov 2012 3:09 AM #157
-
14 Nov 2012 6:33 AM #158
Thanks
Now filters are coming inside the grid. But the filter functionlity is not working. I mean i am unable to filter. Also i am unable to reposition the columns. Please suggest what needs to do. I am new to ext js
-
4 Dec 2012 8:22 PM #159
Filter not working when grid id put inside a panel
Filter not working when grid id put inside a panel
Hi
I am using Extjs version 3 . Grid filter is working fine when i use the below coding
var filterRow = new Ext.ux.grid.FilterRow({
// automatically refilter store when records are added
refilterOnStoreUpdate: true
});
var grid= new Ext.grid.GridPanel({
store : artistDashboardStore,
plugins : [filterRow]});
but if i put the grid inside a panel like the below it is not working.
var artistDshTabPanel = new Ext.TabPanel({
activeTab : 0,
items : [{
title : 'ABC',
items :[grid]
}]
});
Any help ?
Thanks
Sabareesh
-
18 Dec 2012 5:52 AM #160
Online Demo
Online Demo
Any luck on the online demo? The old link doesn't seem to be working...
Thanks in advance.
Regards.


Reply With Quote
