Search Type: Posts; User: charris
Search: Search took 0.02 seconds.
-
25 Apr 2012 5:05 AM
- Replies
- 1
- Views
- 316
Ah! Silly me... "pro" == "protected" and callParent()/callOverridden() were hidden because the doc filters were set to not show protected items. Derp.
-
25 Apr 2012 5:02 AM
- Replies
- 1
- Views
- 316
I just did a search in the API docs site for callParent() and callOverridden() and have a couple of questions:
1. They show up in the search results with a "pro" label next to them--what does that... -
24 Feb 2012 4:55 AM
Jump to post Thread: Grid cell tooltip by charris
- Replies
- 7
- Views
- 6,105
You can configure your column to use a renderer that, in addition to returning the value shown in the cell, can modify the <td> element surrounding the cell. Specifically, you can add the "data-qtip"...
-
22 Feb 2012 12:56 PM
- Replies
- 2
- Views
- 953
Does anyone have an actual example of how to do this with ExtJS 4? I've tied extending the column class and adding a ProgressBar as a child item, but it doesn't work.
Thanks! -
27 Jan 2012 8:55 AM
- Replies
- 2
- Views
- 591
In case anyone else comes across this in the future, note that the issue seems to be that ExtJS 4.0.x uses custom scrollbars--something that's been discontinued in 4.1 (i.e., 4.1 uses native scroll...
-
24 Jan 2012 3:00 PM
- Replies
- 2
- Views
- 591
I have a tree panel and am trying to do an animated scroll to certain locations. I'm using myTreePanel.getView().getEl().scrollTo('top', yCoord, true) to do this.
The view does scroll down to the... -
5 Jan 2012 5:15 AM
- Replies
- 3
- Views
- 713
I have an Ext.grid.Panel (aka gridpanel) with a store, used only for "visual effect" (i.e., nothing gets saved to the server). When I create new model instances and add them to the store they are...
-
3 Jan 2012 8:05 AM
- Replies
- 2
- Views
- 481
msims to the rescue (again)--thanks!
-
3 Jan 2012 7:48 AM
- Replies
- 2
- Views
- 481
Hi. I have a grid panel which uses a RowEditing plugin configured as follows:
var rowEditing = Ext.create('Ext.grid.plugin.RowEditing', {
clicksToMoveEditor: 1
});
rowEditing.on('edit',... -
3 Jan 2012 6:42 AM
Jump to post Thread: xdomainrequest support by charris
- Replies
- 16
- Views
- 3,902
I'm not sure if this is relevant, but if you look at the source for Connection.request you'll see that it only tries to use a cross-domain request for IE 8+:
if ((options.cors === true || me.cors... -
21 Dec 2011 8:19 AM
- Replies
- 1
- Views
- 422
Found a solution (although still open to hearing other ideas).
First, you can call a store's load() function with a config object that will be passed to an operation. The API docs for... -
21 Dec 2011 6:42 AM
- Replies
- 1
- Views
- 422
For example, say I have a server API for loading people that handles requests like this: GET /people/?id=101,329,27
I'd like to build a Store (probably a custom class that extends Ext.data.Store)... -
2 Dec 2011 7:07 AM
- Replies
- 3
- Views
- 808
Solution: use layout=auto instead of vbox. If anyone is curious:
Before: http://jsfiddle.net/clint_harris/Bt6w9/
After: http://jsfiddle.net/clint_harris/Wqb82/
Thanks to tvanzoelen for... -
1 Dec 2011 3:54 PM
- Replies
- 3
- Views
- 808
I have a form panel with autoScroll=true, but the scrollbars aren't showing up. There's a working example of it here that anyone can fork and modify: http://jsfiddle.net/clint_harris/Bt6w9/ (also,...
-
14 Nov 2011 11:43 AM
- Replies
- 9
- Views
- 7,825
I've been told by one of the Sencha developers that there's a ticket in Jira (EXTJSIV-28) for adding filtering to tree, scheduled for 4.1.
-
10 Nov 2011 9:33 AM
- Replies
- 1
- Views
- 445
I'm using KeyMap to intercept Alt+F keyboard events. In IE8, I'm unable to prevent the event from propagating and causing the browser's File menu to be shown.
Runnable test case:... -
10 Nov 2011 7:05 AM
- Replies
- 5
- Views
- 830
Here's the solution that I'm using (again, you can actually try running/modifying it here: http://jsfiddle.net/clint_harris/Syhj2/):
Ext.define('MyMenuItem', { extend : 'Ext.menu.Item',
... -
9 Nov 2011 2:25 PM
- Replies
- 5
- Views
- 830
Thanks! Funny, I was just trying the same thing. It does work--I have a working example here: http://jsfiddle.net/clint_harris/Syhj2/ (a few cosmetic kinks to work out, but functional)
-
9 Nov 2011 12:32 PM
- Replies
- 5
- Views
- 830
I'd like to make a menu (i.e., Ext.menu.Menu) where the items include a right-aligned keyboard shortcut--something like this:
29189
I can't find an obvious/out-of-box way to do this with... -
8 Nov 2011 4:01 PM
- Replies
- 5
- Views
- 2,594
For anyone else who comes across this, the work-around I think Mitchell is suggesting involves setting the reader similar to as follows (i.e., using setReader() in the constructor instead of defining...
-
8 Nov 2011 2:24 PM
- Replies
- 5
- Views
- 2,594
Hey Mitchell, thanks for taking a look at this.
To be clear, I only see this problem if "ModelA" is defined before "ModelB". When I reload my application, sometimes ModelB is defined first; in... -
8 Nov 2011 10:39 AM
- Replies
- 5
- Views
- 2,594
Note that a temporary work-around I've found is to hard-code the proxy config portion of each model class with the model class name. For example:
Ext.define('MyAModel', {
extend:... -
8 Nov 2011 10:32 AM
- Replies
- 5
- Views
- 2,594
I believe the following scenario reveals a bug:
Define a model class, ModelA, with a proxy config
Define another model class, ModelB, also with a proxy config
Call ModelB.load(...)
Issue: The... -
31 Oct 2011 2:48 PM
- Replies
- 2
- Views
- 581
That works! I don't know how--all the other functions I tried on the component and/or element regarding width didn't work--but I'll take it! Thanks!
-
31 Oct 2011 1:07 PM
- Replies
- 2
- Views
- 581
What's the best way to get a floating component to "shrink" to the width of its contents (a single line of text) and center horizontally?
What I'm doing now is *not* specifying a width for the...
Results 1 to 25 of 106
