Search Type: Posts; User: Uberdude
Search: Search took 0.02 seconds.
-
19 Apr 2012 1:01 AM
Jump to post Thread: ExtJS lack of html encoding by Uberdude
- Replies
- 26
- Views
- 16,535
For a global workaround see my previous post
-
21 Mar 2012 3:53 AM
- Replies
- 4
- Views
- 5,560
Sencha don't seem to care about Ext 3 anymore so I doubt anyone will look at or fix this bug. From looking at the Ext 4 source code it seems to suffer from the same bug, but I've not actually tried...
-
10 Feb 2012 6:39 AM
Jump to post Thread: Scrollbars in Documentation by Uberdude
- Replies
- 4
- Views
- 672
RE mouse wheel, yeah, but why cripple it for those who prefer to use scrollbars (or don't have mouse wheel e.g. laptops)? In fact this only happens for me in Chrome 16 (presumably only it supports...
-
10 Feb 2012 3:55 AM
Jump to post Thread: Scrollbars in Documentation by Uberdude
- Replies
- 4
- Views
- 672
I really don't like the new scrollbars in the documentation. It used to have standard browser scroll bars which work fine and are what people expect. Now they are thin iPhone-style ones which are...
-
15 Dec 2011 9:36 AM
- Replies
- 12
- Views
- 26,823
Yes. If you call getEl() right now instead of on the render event then it won't return anything as it hasn't been rendered yet.
You can use the direct keyup event, so long as you set... -
13 Dec 2011 4:19 AM
Jump to post Thread: A request for Panel Title by Uberdude
- Replies
- 6
- Views
- 573
This issue is not quite that RTM, though RTM for title config as I posted above explains the original problem of why setTitle does not work.
-
13 Dec 2011 2:45 AM
Jump to post Thread: A request for Panel Title by Uberdude
- Replies
- 6
- Views
- 573
In that case I think you'll need to delay constructing the Panel until you know if you want it to have a header/title or not. But maybe there's a way to make the header DOM but hide it until needed.
-
13 Dec 2011 2:11 AM
Jump to post Thread: A request for Panel Title by Uberdude
- Replies
- 6
- Views
- 573
This happens because if the title property of a Panel is falsy at construction time the bits of the DOM to make the header in which the title is placed are not created. So if you set the title after...
-
18 Nov 2011 2:26 AM
- Replies
- 1
- Views
- 286
As you have noted, the disabled config option cannot be a function, it is a boolean. The setDisabled method needs to be called when you want to change the disabled status of the button. You would...
-
15 Nov 2011 2:06 AM
Jump to post Thread: setDisabled(false) for Menu item by Uberdude
- Replies
- 5
- Views
- 623
You can disable the menu item if that's what you want to do. The problem was not with the setDisabled method, but the fact you weren't getting a reference to the menu item object to be able to call...
-
14 Nov 2011 8:05 AM
Jump to post Thread: setDisabled(false) for Menu item by Uberdude
- Replies
- 5
- Views
- 623
ref does not work for items in menus as they aren't components.
-
14 Nov 2011 7:50 AM
- Replies
- 2
- Views
- 554
When I needed a simple little UI widget to graphically display a fraction I made the following. If you need to link to a store and change the value then, as darthwes says, DataView is the way to go,...
-
10 Nov 2011 3:48 AM
- Replies
- 1
- Views
- 447
Eh? Can you explain what you are doing and what goes wrong?
-
10 Nov 2011 3:45 AM
- Replies
- 2
- Views
- 608
logform.getForm().submit({
url:'http://localhost:8080/geoserver/TestWfsPost',
method:'POST',
success: function(form, action) {
// process response ...
}
});
Check... -
7 Nov 2011 9:13 AM
- Replies
- 4
- Views
- 1,138
In similar situations I have switched between a normal button and a split button. Using Ext.Action makes it easy.
-
7 Nov 2011 7:04 AM
- Replies
- 4
- Views
- 1,138
If you hide the arrow, doesn't it just become a regular button?
-
1 Nov 2011 2:36 AM
Jump to post Thread: events and scope by Uberdude
- Replies
- 2
- Views
- 494
Read the documentation for "on" which is shorthand for addListener. Your brackets are unbalanced, so I have fixed them to make it clear where scope arguments go.
MyComponent =... -
1 Nov 2011 2:25 AM
Jump to post Thread: Calculate day of week by Uberdude
- Replies
- 4
- Views
- 524
That's a simple class?! If you write code like that alarm bells should be ringing about reinventing the wheel.
function dayOfWeek(year, month, day) {
return Date.dayNames[new Date(year, month... -
31 Oct 2011 8:44 AM
- Replies
- 2
- Views
- 591
Yes, see my post in http://www.sencha.com/forum/showthread.php?33475-Tip-Long-menu-overflow/page2
-
28 Oct 2011 12:50 AM
- Replies
- 12
- Views
- 1,621
Surprisingly enough:
fieldset.setTitle('New title');
To grab a reference to the fieldset you could use id, though I always recommend against it as ids are evil global variables in disguise.... -
28 Oct 2011 12:42 AM
Jump to post Thread: hidden component by Uberdude
- Replies
- 2
- Views
- 477
You should set the variable visible to the boolean value true or false, not the string value 'true' or 'false'.
-
27 Oct 2011 4:28 AM
- Replies
- 3
- Views
- 605
I have also encountered IE dropping the POST data of Ajax requests. Can't remember the diagnosis, we also workedaround with a retry.
-
26 Oct 2011 3:25 AM
- Replies
- 1
- Views
- 626
That is working correctly and according to the documentation. 1 means the last day of this month of October is a Monday, which is correct.
If you want the answer 31 then new... -
25 Oct 2011 1:48 AM
- Replies
- 3
- Views
- 1,574
Do some debugging with Firebug!
-
18 Oct 2011 3:23 AM
- Replies
- 2
- Views
- 647
Another example of why ids are global variables in disguise and thus evil...
Results 1 to 25 of 119
