-
14 Jun 2012 8:21 AM #11
Does this exist in 4.1 yet?
Does this exist in 4.1 yet?
Does anyone know if a built in function exists this for this in 4.1 now? I can't seem to find anything in the docs but it's been talked about for a few years now.
-
28 Dec 2012 6:21 AM #12
on grid reload, how to remove the custom sorters applied on grid columns ? we tried to remove the store sorters on grid render(bad practice).
we did everything mentioned in this thread. but i hope there is already a solution provided in extjs new versions, to remove the sort icons on grid columns when it is reopened/reloaded.
-
21 Jan 2013 11:36 PM #13
Hi,
I am facing this issue with 4.x.x version, in my grid i can able to restore the sort filter but the UI is still showing the sort icon.
can any body help me on this.
-
23 May 2013 12:33 PM #14
remove sort fields
remove sort fields
I am using 4.1.0 here is how i do it
that will remove the sort applied to the store, it'll remove the arrow on the column as well.Code:grid.getStore().sorters = new Ext.util.MixedCollection(); grid.getStore().load();


Reply With Quote