Search Type: Posts; User: mjaomaha
Search: Search took 0.01 seconds.
-
8 Nov 2010 11:35 AM
Jump to post Thread: anaylyze code for memory leaks by mjaomaha
- Replies
- 0
- Views
- 432
Our team has been building on top of extjs widgets for over 1 1/2 years, and have developed an "eclipse like" application. It runs with a cometd backend, so everyone who is on the same page will see...
-
18 Oct 2010 10:12 AM
Jump to post Thread: onScroll event for TreePanel by mjaomaha
- Replies
- 2
- Views
- 1,006
Thanks. I happened to be working with the new TreeGrid, so in my afterRender function, I have:
this.innerBody.on({
scroll: this.removeLocaterArrow
});
The... -
18 Oct 2010 7:02 AM
Jump to post Thread: onScroll event for TreePanel by mjaomaha
- Replies
- 2
- Views
- 1,006
If I have a tree panel that has enough nodes that a scroll bar appears, I would like to call a function if the scroll bar is clicked on or is being dragged up or down. (Either will work, so I just...
-
14 Apr 2010 8:47 AM
- Replies
- 13
- Views
- 2,300
I've been working with extjs for a little over a year now. 85% of the 40 hours a week I work is spent in Extjs, and I do have to say that there is so much information that getting started is...
-
14 Apr 2010 7:43 AM
- Replies
- 2
- Views
- 1,058
I'm reading through the source code for Component, Container and Panel, and this is what I'm finding...
When you set a "renderTo", the panel gets an attribute called this.container, which is the Ext... -
13 Apr 2010 1:11 PM
- Replies
- 2
- Views
- 1,058
Ok, I've been working with a little bit, and I notice that if I leave the width attribute undefined, the panel will automatically adjust to the width, even when the page is resized. This is not due...
-
13 Apr 2010 7:55 AM
- Replies
- 2
- Views
- 1,058
This may be simple, but I seem to hit a few snags... Here is what I need to do.
I have just a standard html page who's layout is a table with relative width and height of 100%, and each row and... -
18 Feb 2010 9:31 AM
- Replies
- 4
- Views
- 2,410
I have noticed that the horizontal scroll doesn't work until there are actually rows of data. It appears the width of the row of data actually makes the parent panel realize it needs a scroll bar,...
-
18 Feb 2010 9:24 AM
- Replies
- 2
- Views
- 1,342
I have been working with the Ext.ux.tree.TreeGrid, and I can perhaps lead you in the right direction. The Ext.ux.tree.TreeGrid is designed to use a standard treenode, but the trick is that the...
-
1 Feb 2010 12:28 PM
- Replies
- 2
- Views
- 6,623
In Extjs 3.1 blog it says:
The treegrid is not included in the base of the 3.1 download. The example is still being linked to a set of extension (ux) js files. Is this a mistake?
Thanks.
... -
25 Jan 2010 10:25 AM
- Replies
- 32
- Views
- 10,321
I have had some thoughts about the column tree model. My project that I am working on has some pretty advanced requirements, and I think that the tree grid could be somewhat simplified if you were...
-
23 Nov 2009 10:01 AM
- Replies
- 2
- Views
- 1,168
Ok, I found that a text field in standard html implements this feature, and is not part of Extjs.
-
23 Nov 2009 9:05 AM
- Replies
- 2
- Views
- 1,168
If you notice, in a text field you can hit control z to "undo" text that you have entered. It maintains a history somewhere and a handler, and I don't see it either. Anybody know?
-
19 Nov 2009 11:31 AM
- Replies
- 4
- Views
- 1,116
That is a great workaround. That solves the issue for now. I wonder if there is a method the HtmlEditor needs to override so the Iframe doesn't get messed up on animation.
Thanks for the tip. -
19 Nov 2009 10:48 AM
- Replies
- 4
- Views
- 1,116
If you render the HtmlEditor in a panel that can be collapsed, and then you collapse the panel, when the panel is expanded again, the content for the HtmlEditor does not show back up and you can't...
-
19 Nov 2009 10:38 AM
- Replies
- 7
- Views
- 2,158
I have activated this component to listen for changes via http cometd, and I could not use the setValue. I over rode the setValue with the following...
setValue(newValue) {
var bd =... -
28 Oct 2009 8:12 AM
Jump to post Thread: Html Editor onBlur event by mjaomaha
- Replies
- 0
- Views
- 907
I have been worrking with some of the form elements, and I have a requirement that when a user leaves any field that it automatically saves its value via an ajax call to the back end if it is dirty....
-
29 Sep 2009 9:46 AM
- Replies
- 9
- Views
- 1,346
Maybe you've already eliminated this, but I just use the buttons attribute of a form panel for my buttons... Ignore the jsp spring tags.
var intPanel = new Ext.FormPanel({
labelWidth: 75,... -
28 Sep 2009 12:09 PM
- Replies
- 9
- Views
- 1,346
I wondered if that might not work. The short hand usually works in places where the child item type is expected, but I have done some unique things where I had to use the full instantiation. I also...
-
28 Sep 2009 11:40 AM
- Replies
- 9
- Views
- 1,346
Can we see the whole form code?
Also, maybe try creating the buttons first, then use the containers insert method and see if that helps.
var addbutton = new Ext.Button({
text:... -
28 Sep 2009 11:20 AM
Jump to post Thread: filter for bad input by mjaomaha
- Replies
- 3
- Views
- 899
I don't know if you are also building the backend, but your application should be sql injection safe, which means that no text used on input fields is used to build the query on the backend. In java...
-
28 Sep 2009 8:37 AM
- Replies
- 10
- Views
- 2,835
Also as a javascript developer, I would not know what to do if I was not using firefox WITH firebug installed. You can put break points in your javascript, and inspect every attribute and method...
-
28 Sep 2009 8:22 AM
- Replies
- 10
- Views
- 2,835
I ran into this issue as well. My solution is that you have access to the menu parent while you are creating the child, so I make a new custom attribute on the child as I create it, which is a...
-
28 Sep 2009 8:03 AM
- Replies
- 5
- Views
- 3,517
I have noticed in firebug that the error handler doesn't show anything when a javascript exception is thrown, (the code actually catches an exception, but then throws it and it isn't handled). An...
-
16 Sep 2009 2:14 PM
- Replies
- 2
- Views
- 5,163
This very issue was a pain in my side, and I thought there must be an easier way. I was using Firefox, and found that the text color was actually getting overwritten by this css style in the...
Results 1 to 25 of 37
