Search Type: Posts; User: babsjr77
Search: Search took 0.15 seconds.
-
10 Apr 2013 11:16 AM
- Replies
- 8
- Views
- 914
Try setting com.sun.jersey.config.feature.Trace to true in your jersey servlet or filter configuration. It sets a bunch of debug HTTP response headers. Take a look at the HTTP headers the ExtJS...
-
14 Mar 2013 7:31 AM
Jump to post Thread: Theme slicer possible has a bug by babsjr77
- Replies
- 2
- Views
- 218
This is still a bug in Sencha Cmd v3.0.2.288. The active tab images for legacy browsers are incorrectly generated.
-
6 Mar 2013 7:30 AM
Jump to post Thread: Fast tree expandAll/collapseAll by babsjr77
- Replies
- 1
- Views
- 557
I needed a faster way in ExtJS 4.1 to expand and collapse all the nodes in a large tree. The following method is much faster than calling tree.expandAll() and tree.collapseAll(). Be aware this will...
-
24 Jan 2013 1:36 PM
- Replies
- 1
- Views
- 218
REQUIRED INFORMATION
Ext version tested:
Ext 4.1.3
Description:
Ext.enableFx should control the Ext.tree.Panel.enableAnimations config property. It does not
HELPFUL INFORMATION -
17 Jan 2013 8:07 AM
- Replies
- 6
- Views
- 855
Bump. This is still a problem in 4.1.3 and 4.2-beta2. ExtJS does not currently support dropping a tree node into a container.
-
28 Nov 2012 7:33 AM
- Replies
- 1
- Views
- 616
Here are various notes I've collected on upgrading our application from Ext3.3 to Ext4.1. The application is about 60,000 lines of javascript. I first tried using the compatibility layer but our...
-
26 Nov 2012 12:36 PM
- Replies
- 2
- Views
- 1,091
The "rec" variable and its Model class is still valid after removing the link in ModelManager. It's just no longer tracked by ModelManager. As it stands now it's quite simple to create a leak without...
-
26 Nov 2012 10:55 AM
- Replies
- 2
- Views
- 1,091
My application creates quite a few Ext.data.Store.ImplicitModel objects which get stored in Ext.ModelManager.types object. These references are never getting removed once the model is no longer used.
-
6 Nov 2012 1:40 PM
- Replies
- 16
- Views
- 2,039
This worked for me, in the grid's itemcontextmenu listener:
var view = grid.getView();
var cellNode = e.getTarget(view.cellSelector);
var header = view.getHeaderByCell(cellNode);
var column... -
6 Nov 2012 6:48 AM
Jump to post Thread: Fieldset reset / Form reset by babsjr77
- Replies
- 3
- Views
- 928
Possibly something like:
Ext.each(fieldset.query('field'), function(field) {
field.reset();
}); -
1 Feb 2012 7:44 AM
Jump to post Thread: Ext JS 4.1 - Updates by babsjr77
- Replies
- 102
- Views
- 30,618
But the forums make it difficult to find outstanding bugs. Even a read-only view of Jira would be better than the existing forums for finding bugs.
-
7 Jan 2011 1:04 PM
- Replies
- 11
- Views
- 4,493
What's the license?
-
9 Dec 2010 8:16 AM
- Replies
- 10
- Views
- 3,704
Looks like this is the original chrome bug:
http://code.google.com/p/v8/source/detail?r=5911
But it appears both webkit and chrome reverted the changes.
http://trac.webkit.org/changeset/73594... -
8 Dec 2010 8:47 AM
- Replies
- 10
- Views
- 3,704
XTemplate has the same problem
re : /\{([\w-\.\#]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?(\s?[\+\-\*\\]\s?[\d\.\+\-\*\\\(\)]+)?\}/g, -
7 Dec 2010 9:18 AM
- Replies
- 1
- Views
- 812
var desc = this.dir && this.dir.toLowerCase() == 'desc',
prop = this.property || 'text';
sortType = this.sortType;
folderSort = this.folderSort;
caseSensitive =... -
17 Sep 2010 5:36 AM
- Replies
- 3
- Views
- 2,246
Do you use beginEdit/endEdit around record updates? How about suspendEvents/resumeEvents around store?
store.suspendEvents();
foreach (json) {
var record = findRecord();
... -
14 Jul 2010 6:32 AM
- Replies
- 110
- Views
- 18,327
Ext.getCmp is similar to using a global variable and all its associated problems.
-
8 Jul 2010 10:58 AM
- Replies
- 1
- Views
- 1,069
Once you load the data you can use formpanel.getForm().loadRecord or formpanel.getForm().setValues to set the field values. No need to do the lookup of the fields yourself.
-
21 May 2010 10:57 AM
- Replies
- 2
- Views
- 570
http://www.extjs.com/learn/Ext_FAQ#My_code_links_to_extjs.com.2Fs.gif
-
11 Mar 2010 1:34 PM
- Replies
- 11
- Views
- 1,674
Ext.onReady(stapler);
You pass a reference to the stapler function to onReady, not the result of stapler(). -
2 Mar 2010 7:49 AM
- Replies
- 18
- Views
- 2,403
How is that hacky? It's a simple registration system to track all the modules. In my case each module has more than an init function. It also has various methods to deal with lifecycle type issues...
-
2 Mar 2010 7:17 AM
- Replies
- 18
- Views
- 2,403
Yes. In our case I have written a simple module manager with a register function. Each module is contained in a separate js file (all the js files are minimized for production) and calls the...
-
10 Dec 2009 9:01 AM
- Replies
- 5
- Views
- 1,053
You could profile it in firebug and see if anything odd sticks out.
-
29 Oct 2009 10:38 AM
- Replies
- 5
- Views
- 1,091
Change your listeners to something like (notice the 3rd argument for the scope):
gridIdw.on('cellclick', this.cellClick, this);
And move the cellClick function into your module. -
11 Sep 2009 9:30 AM
Jump to post Thread: Javascript minification by babsjr77
- Replies
- 11
- Views
- 3,483
There is also https://jawr.dev.java.net/
Results 1 to 25 of 29
