-
3 Mar 2010 1:34 AM #71
Hi,
Is there a way to send the filter request only when the filter is 'ready' - when the filter box is closed instead of updating with every change in the box?
Eg.
with list filter - when the user finished ticking and unticking,
with text filter - when the full search text is entered?
For larger datasets and remote filtering this would be better for me.
Thanks for the help.
SWK
-
8 Mar 2010 8:16 PM #72
hi,
i looked at your solution here http://www.extjs.com/forum/showthrea...127#post380127 and tried, but there is no change in the grid, in fact i get an error
a.init is not a function
[Break on this error] Ext.DomHelper=function(){var n=null;var ...(Ext.History,new Ext.util.Observable());
and the grid is not displayed
Can you pl help?
-
22 Mar 2010 11:00 AM #73
-
24 Mar 2010 10:24 AM #74
-
26 Mar 2010 1:51 AM #75
images menu in internet explorer
images menu in internet explorer
Hi,
I still have a problem with the icon images at the filter menu. In FF or Chrome it renders perfect but in IE I can't see the menu images. There're some solutions to that issue in the older version but don't apply to the current.
Any idea?
Internet Explorer

Firefox

-
26 Mar 2010 2:15 AM #76
I like the filters. However it's hard to know if filters are applied, as you only can see it with open the column menu.
So i made a simple button in tbar to remove all filters, maybe you need the same or want enhance it:
in store listeners:
and the button:Code:listeners: { datachanged: function(store){ var hasFilters = false; filters.filters.each(function (filter) { if (filter.active) { hasFilters = true; } }); if (hasFilters) { this.doClearFilters.show(); } else { this.doClearFilters.hide(); } }, scope: this },
Code:{ text: 'Clear all Filters', ref: '../doClearFilters', handler: function() { filters.clearFilters(); }, scope: this, hidden: true },vg Steffen
--------------------------------------
Release Manager of TYPO3 4.5
energlobe.de - german online magazine
-
26 Mar 2010 4:37 AM #77
clearfilters
clearfilters
Applied filters have their column header changed to be bold and italic. Maybe you're missing a CSS file?
/ext-3.1.1/examples/ux/gridfilters/css/GridFilters.css
/ext-3.1.1/examples/ux/gridfilters/css/RangeMenu.css
Also, the standard Grid Filters package comes with a clearFilters() method. Like this:
Code:oGrid.filters.clearFilters(); // disable column filters and reload store
-Michael B2B web application developer
-
26 Mar 2010 8:45 AM #78
i have the css included (of course) but i see no bold headers.
Also i think it's not that userfriendly. Think of having 3 filters active, to get back unfiltered you have to uncheck three different menus.
And in my example i already use the filters.clearFilters()
vg Steffen
--------------------------------------
Release Manager of TYPO3 4.5
energlobe.de - german online magazine
-
26 Mar 2010 9:51 AM #79
Strange, I can't think of any other reason why the column headers wouldn't get styled when a filter is applied. Ext 3.1.1, I assume. Have you overridden the default filterCls from "ux-filtered-column"?
Ah! I misunderstood the "ref" part of the example. Yes, I do agree that a single method to clear all column filters is very nice - I use it, too!-Michael B2B web application developer
-
29 Mar 2010 3:31 AM #80


Reply With Quote