Search Type: Posts; User: bloudon
Search: Search took 0.03 seconds.
-
15 Mar 2011 11:15 AM
Jump to post Thread: API Doc issues by bloudon
- Replies
- 140
- Views
- 22,519
Agreeing with sg707. I use tabs jump between items of short term interest. Outside of day to day concerns my work touches on nearly every corner of the Ext API. A "favorites" capability for me would...
-
16 Feb 2011 2:49 PM
Jump to post Thread: API Doc issues by bloudon
- Replies
- 140
- Views
- 22,519
Add another vote for wanting tabs back. Being able to jump around between multiple class docs without losing scroll state in any one is very useful. Also, the docs themselves now feel too crowded by...
-
27 Dec 2010 6:58 AM
- Replies
- 8
- Views
- 1,384
Another post on the same issue:
http://www.sencha.com/forum/showthread.php?112625-FIXED-1334-Bug-in-3.3-while-masking-windows
Also contains an override to allow the masking to work again. -
3 Dec 2010 6:55 AM
- Replies
- 67
- Views
- 15,635
Not immediately on hand, no. I can get something thrown together and put up somewhere when I have the moment, but all it really would be is an Ext document loaded in the iframe of another document....
-
2 Dec 2010 2:25 PM
- Replies
- 67
- Views
- 15,635
It would be especially cool if this could descend into iframes. Perhaps a menu could be placed in the component browser's toolbar for selecting from available window objects in a manner similar to...
-
17 Nov 2010 10:52 AM
- Replies
- 1
- Views
- 1,424
Issue occurs with Ext.form.Radio instances in general rather than being specific to radio groups.
This override does well enough for me as a bandage in lieu of a proper fix:
... -
17 Nov 2010 10:02 AM
- Replies
- 9
- Views
- 2,524
Simply replacing the problem line is not enough - certain private variables need to be redefined in the override:
Ext.Element.prototype.mask = function(msg, msgCls) {
var me = this,
... -
1 Sep 2010 8:50 AM
- Replies
- 8
- Views
- 1,949
After further testing I found the use of 'checked: true' to actually not itself be involved in the issue. Simply using setValue at all was enough, but in my code it took at least two value...
-
1 Sep 2010 6:58 AM
- Replies
- 8
- Views
- 1,949
Also encountering this problem. I've found it in my case to be caused by passing 'checked: true' in the config of one of the radio inputs combined with later checking one of its sibling inputs with...
-
20 May 2010 8:17 AM
- Replies
- 8
- Views
- 2,566
The problem is that Ext.util.Cookies.set() will set the cookie's path to '/' by default, but Ext.util.Cookies.clear() does not specify any path whatsoever in its own cookie assignment. Unless you are...
-
24 Feb 2009 10:08 AM
- Replies
- 2
- Views
- 1,927
See the requestcomplete event of the Ext.Ajax singleton.
Example use:
Ext.Ajax.on('requestcomplete', function( oConn, oResp, oOpts ) {
var oData = Ext.decode(oResp.responseText);
... -
6 Feb 2009 8:28 AM
Jump to post Thread: [2.2.1] ISO 'Z' Date changes. by bloudon
- Replies
- 35
- Views
- 5,699
Lack of TZ designator in an ISO8601 value specifically assumes the current viewer's local TZ.
Glad to see proper parsing of ISO8601 UTC values is now being performed. I may be able to remove a... -
13 Oct 2008 6:10 AM
- Replies
- 4
- Views
- 3,302
That override only works when the panel has a single tool.
This worked better for me:
Ext.override(Ext.Panel, {
setIconClass : function(cls){
var old = this.iconCls;
... -
31 Jul 2008 7:50 AM
- Replies
- 4
- Views
- 1,271
Exactly what I was looking for.
Note that the first line needs a correction. Change:
Ext.override(Ext.layout.AccordionLayout, {
To: -
22 Apr 2008 1:25 PM
- Replies
- 36
- Views
- 9,584
I would definitely like some clarification on this, also. Your remark about a shared library relationship might not hold if the following statement is true:
Source:... -
22 Apr 2008 10:09 AM
Jump to post Thread: License Change? by bloudon
- Replies
- 758
- Views
- 248,218
Especially with the refined definition of derivative work added by GPL v3 over v2. Anything designed to work specifically with ExtJS is considered derivative and must be GPLed. This infection...
-
22 Apr 2008 9:20 AM
Jump to post Thread: License Change? by bloudon
- Replies
- 758
- Views
- 248,218
We were already intending to purchase a license once our project reaches initial release for reason alone of expressing monetary appreciation to the developers, so the change of the "free" license...
-
3 Apr 2008 8:51 AM
Jump to post Thread: Standards tags CSS problem by bloudon
- Replies
- 4
- Views
- 861
Create a no-reset stylesheet and apply it to your content element:
http://extjs.com/forum/showthread.php?t=16266 -
31 Mar 2008 9:39 AM
- Replies
- 16
- Views
- 2,866
The benefit of truly private members is less about data security and more about implementation security. It allows me to present to another developer an API which constrains access and manipulation...
-
7 Mar 2008 6:35 AM
- Replies
- 467
- Views
- 181,613
Thanks for the update, by the way. The failure to honor configured editor height in IE6 is now fixed!
-
7 Mar 2008 6:30 AM
- Replies
- 467
- Views
- 181,613
At line 427 in Ext.ux.TinyMCE.js an attempt is made to access an element with a class name of mceStatusbar:
var sbar = t.select( "td.mceStatusbar > div" ).first().first();
if( sbar ) {
h... -
14 Feb 2008 6:40 AM
- Replies
- 12
- Views
- 13,266
No clue. Posting the extension in a ZIP is probably the best option.
Ah, yes, you are correct. I renamed that to something else without any loss of functionality.
I realize it comes... -
13 Feb 2008 9:16 AM
- Replies
- 12
- Views
- 13,266
This is excellent, by the way. I've been wanting a simple, drop-in replacement for the traditional file selector, and this provides.
Just a couple nitpicks:
Adding the suffix 'FILE' to the file... -
13 Feb 2008 8:28 AM
- Replies
- 12
- Views
- 13,266
Line 84 has a syntax error: the forward slash in the regexp is not being escaped.
To fix, change this:
var filePath = input.dom.value.replace(///g, '\\');
... to this: -
4 May 2007 2:05 PM
- Replies
- 4
- Views
- 2,540
I will look into it if it becomes a blocking issue. I've dealt with it for now by switching over to the YUI adapter. Others here wanted jQuery for the plugins, but we have not used any yet and...
Results 1 to 25 of 43
