Search Type: Posts; User: Musical Shore
Search: Search took 0.03 seconds.
-
4 Apr 2010 12:41 PM
- Replies
- 2
- Views
- 722
OK, I've answered my own question: the selector passed must be a CSS selector. So, if the class is 'foo', than the proper statement is:
el.select('.foo');
not
el.select('foo');
There... -
4 Apr 2010 12:34 PM
- Replies
- 2
- Views
- 722
Hi,
I am trying to select by class the child node of an element. After rendering a component, I grab the underlying Ext.element and try to retrieve a child node by class. Here is my HTML:
... -
10 Mar 2010 8:50 PM
- Replies
- 2
- Views
- 3,184
Thanks, this is helpful. However, the element that is in the list that I want to disable is of a different "type" than the other elements. The other elements are of type "list-item" whereas the...
-
9 Mar 2010 5:09 PM
- Replies
- 2
- Views
- 3,184
Hi,
I would like to disable items in the ComboBox drop down list. the drop down list is actually broken up into two sections, and there is an item that acts as a separator. With a normal <select... -
24 Feb 2010 11:24 PM
Jump to post Thread: how to submit an Extjs form by Musical Shore
- Replies
- 7
- Views
- 15,796
I hope you are not suggesting that this is a user-friendly and well-organized website/:)
-
2 Feb 2010 1:22 PM
- Replies
- 0
- Views
- 639
Hi,
I am trying to get a combobox to filter out the words in the dropdown list that don't match the user-entered stem.
e.g.
Here is my comboBox code:
var search = new... -
2 Feb 2010 11:48 AM
Jump to post Thread: ComboBox not showing by Musical Shore
- Replies
- 2
- Views
- 703
I think I figured out the problem. I need to use an HttpProxy instead of a scriptTagProxy.
-
1 Feb 2010 10:50 PM
Jump to post Thread: ComboBox not showing by Musical Shore
- Replies
- 2
- Views
- 703
I've made a little headway. I can get the ComboBox to appear, but it doesn't load the list. It just hands and says, "Searching...".
Here is my code:
Ext.onReady(function(){
var store... -
1 Feb 2010 5:26 PM
Jump to post Thread: ComboBox not showing by Musical Shore
- Replies
- 2
- Views
- 703
Hi,
I am trying to create an auto-complete box using a combobox. When the ajax request is triggered, the box appears for a second, and is gone. Please take a look:... -
18 Dec 2009 1:56 PM
- Replies
- 2
- Views
- 796
OK, thanks!
-
18 Dec 2009 1:26 PM
- Replies
- 2
- Views
- 796
Hi,
I am writing code for a navigation menu. When the mouse hovers over an element, a class should be added to it to make a submenu visible. Here is my code:
Ext.onReady(function() {... -
8 Dec 2009 11:35 AM
- Replies
- 10
- Views
- 2,924
More problems:
If I don't set floating: true, I get a shadow around the tooltip in IE7 (even with shadow: false). However, if I set floating: true, I also get the flicker.
Here is my code:
... -
7 Dec 2009 7:13 PM
- Replies
- 10
- Views
- 2,924
OK, that helped, thanks. I think the problem was that I had the applyTo node as a child of the target.
-
1 Dec 2009 4:49 PM
- Replies
- 10
- Views
- 2,924
Any insight at all? Or is this a bug?
-
22 Nov 2009 9:57 PM
- Replies
- 10
- Views
- 2,924
The mouse is either over the target element, or it isn't. hideDelay should hide the tooltip if the mouse exits the target area. If the mouse is not over the target area, then the tooltip should not...
-
22 Nov 2009 8:24 PM
- Replies
- 10
- Views
- 2,924
No, that is not true. According to QA, there is still an unacceptable flicker.
Please see the Jing capture:... -
22 Nov 2009 2:11 AM
Jump to post Thread: can't add TabPanel to Panel by Musical Shore
- Replies
- 0
- Views
- 560
I am trying to add an extended TabPanel to a Portlet (an extended Panel).
Early in my code, I define my TabPanel extension:
Ext.ux.myTabPanel = Ext.extend(Ext.TabPanel,{
/.. som config... -
20 Nov 2009 2:51 PM
Jump to post Thread: debug console not working by Musical Shore
- Replies
- 11
- Views
- 1,687
If I do a search for "Ext Debug Console"
www.extjs.com/deploy/ext/examples/debug/debug-console.html
is returned at the top of the list. I can't win against those odds.
ExtJS gets my vote... -
20 Nov 2009 2:43 PM
Jump to post Thread: debug console not working by Musical Shore
- Replies
- 11
- Views
- 1,687
Thanks a lot! Calling Ext.log() from the command line launches the debug console.
I have to say, while ExtJS is an amazing framework, the documentation is really awful. I always find myself on a... -
20 Nov 2009 1:50 PM
Jump to post Thread: debug console not working by Musical Shore
- Replies
- 11
- Views
- 1,687
Thanks for your help, but that isn't working. Below is my include statement. Including debug.js does not help. Also, I'm looking at http://www.extjs.com/deploy/ext/examples/debug/debug-console.html,...
-
20 Nov 2009 1:25 PM
Jump to post Thread: debug console not working by Musical Shore
- Replies
- 11
- Views
- 1,687
Is this a simple fix or do I have to a lot of digging around in the code? I haven't made any changes to any of the debug sources, why doesn't the panel launch. It's kind of frustrating, because this...
-
20 Nov 2009 12:04 PM
Jump to post Thread: debug console not working by Musical Shore
- Replies
- 11
- Views
- 1,687
Hi,
I am including ext-all-debug.js (also ext-base-debug.js) with my application. However, when I hit ctrl+shift+home the debug console does not appear. If I hit that key combo on this page... -
18 Nov 2009 2:12 PM
- Replies
- 7
- Views
- 1,367
OK, this is very helpful. One more question...I need to "rewrite" the setWidth method of Ext.Element due to errors it raises on IE7. However, I see in ext-all-debug.js that setWidth is added to...
-
17 Nov 2009 4:00 PM
- Replies
- 7
- Views
- 1,367
So if I use apply, existing objects will NOT reflect the change, only instances that were instantiated after the apply was done?
-
17 Nov 2009 2:14 PM
- Replies
- 7
- Views
- 1,367
I found a pattern on the forums for dealing with IE bugs in extjs source code - create a patch file and load it after the source file. However, they are using "apply" to overwrite the functions where...
Results 1 to 25 of 44
