Search Type: Posts; User: whirling dervish
Search: Search took 0.01 seconds.
-
4 Mar 2013 8:16 AM
- Replies
- 2
- Views
- 105
Anyone have any insight?
-
27 Feb 2013 1:57 PM
- Replies
- 2
- Views
- 105
Ah I found where the grid is configured in Ext.panel.Table,
This at line 713,
/**
* Gets the view for this panel.
* @return {Ext.view.Table}
*/
getView: function() {... -
27 Feb 2013 1:47 PM
- Replies
- 2
- Views
- 105
So I am trying to implemented a grid feature that needs to listen to the grid reconfigure event,
var grid = this.grid;
grid.on({
reconfigure : function(grid, store) {
// do... -
22 Feb 2013 7:26 AM
- Replies
- 4
- Views
- 539
Ok thanks for the explanation.
Getting back to my original caching is easy to disable on the loader, but then you have disable it on Ext.Ajax and each proxy. The each proxy part bothers me the... -
22 Feb 2013 5:52 AM
- Replies
- 4
- Views
- 539
Hmm I am not seeing switching to ext-all.js (from ext-dev-all.js) disable the no caching param. Is that is what is suppose to happen?
-
21 Feb 2013 3:12 PM
- Replies
- 4
- Views
- 539
As far as I can tell to the extra extjs disable caching parameter, I have to do the following,
Disable it on the loader,
Ext.Loader.setConfig({
disableCaching: false
});
Disable it... -
12 Feb 2013 8:49 AM
- Replies
- 70
- Views
- 17,533
Can someone explain to me the relationship between the leading and trailing buffer configuration for the store backing the grid, and the same buffer configuration on the paging scroller?
-
12 Feb 2013 8:15 AM
- Replies
- 2
- Views
- 254
Thanks that is really helpful.
Only thing I don't understand is why the configuration of the buffer is split across the store and the paging scroller and what the relationship is between them. -
11 Feb 2013 11:13 AM
- Replies
- 4
- Views
- 237
Ah, yes I was using a store id string instead of of a store object, my bad. Once I corrected that it looks like it works as expected. Sorry about the false alarm.
So I see that is documented in... -
8 Feb 2013 12:00 PM
- Replies
- 2
- Views
- 254
So I am encountering a strange issue with my Grid, where it is making a high number of page requests to my backend.
My store is configured with a page size of 50, and it is using the default... -
8 Feb 2013 7:06 AM
- Replies
- 5
- Views
- 263
Thanks a lot, that was helpful.
So in general should I be using managed listeners instead of ones I have to manually clean up? -
7 Feb 2013 2:20 PM
- Replies
- 0
- Views
- 93
I've implemented a custom grid feature 'CommonMenuFeature' and assigned it the alias 'feature.commonmenu'. What I am seeing is that when I try to assign the features using,
features: [ { ftype:... -
7 Feb 2013 2:04 PM
- Replies
- 5
- Views
- 263
So the equivalent .on would be
me.view.store.on({
update: me.onStoreUpdate,
scope: me
});
and me.view is unneeded because there is no managed... -
7 Feb 2013 1:57 PM
- Replies
- 5
- Views
- 263
From the documentation,
Shorthand for addManagedListener.
Adds listeners to any Observable object (or Ext.Element) which are automatically removed when this Component is destroyed.
Available... -
7 Feb 2013 1:47 PM
- Replies
- 4
- Views
- 237
If you create a grid with enableLocking: true, put a listener on the grid.reconfigure event and reconfigure the store on the grid, you should see store being passed into the event handler as a...
-
7 Feb 2013 12:16 PM
- Replies
- 3
- Views
- 480
Created a bug http://www.sencha.com/forum/showthread.php?255930
-
7 Feb 2013 12:14 PM
- Replies
- 4
- Views
- 237
So I am seeing a really odd issue where lockable ('enableLocking: true') grids are firing reconfigure events with a string instead of a store object.
The string itself is the correct store class,... -
6 Feb 2013 1:52 PM
- Replies
- 7
- Views
- 769
Maybe it's because the property name doesn't match the name of the column.
-
6 Feb 2013 1:45 PM
- Replies
- 7
- Views
- 769
Thanks, don't know how I missed that in the documentation. That works like a charm.
Only thing wrong with it is that it doesn't mark the column with the initial sort as being sorted, but that is a... -
6 Feb 2013 12:30 PM
- Replies
- 7
- Views
- 769
Is it possible to set a default sort on a remote sorting store?
A few threads I've encountered mention 'sortInfo' on the store, but I am not seeing that documented anywhere, and it doesn't seem to... -
6 Feb 2013 11:41 AM
- Replies
- 1
- Views
- 170
If dataIndex is set to 0, this conditional will never be true,
if (!me.sorting && oldSortState !== state && me.getSortParam()) {
Line 753 in grid/Column.js
The default... -
6 Feb 2013 10:41 AM
- Replies
- 7
- Views
- 769
Hmm, I am not seeing the sort menu do anything client side. I don't see any requests being sent to the server and I don't see 'sortchange' being fired on my grid.
Anyone have any idea what might... -
1 Feb 2013 8:51 AM
- Replies
- 7
- Views
- 769
My ultimate goal is to have a grid with remote sorting, but this seems like it is supported by setting 'remoteSort: true' on the store backing the grid itself.
My problem is once this is set and... -
31 Jan 2013 9:08 PM
- Replies
- 3
- Views
- 480
I am seeing this under ExtJS 4.1.3
Briefly looking at the source of the 4.2 Beta, it looks like it has the same issue. -
31 Jan 2013 3:29 PM
- Replies
- 3
- Views
- 480
So I am seeing a really odd issue where lockable ('enableLocking: true') grids are firing reconfigure events with a string instead of a store object.
The string itself is the correct store class,...
Results 1 to 25 of 81
