Search Type: Posts; User: --jack
Search: Search took 0.03 seconds.
-
27 Jul 2009 6:18 AM
- Replies
- 4
- Views
- 5,385
Hi Tim,
Thanks for the reply.
I agree with you that destroying and recreating tabs will have its own performance overhead. We may not do it for all tabs but for only selected ones or only when... -
27 Jul 2009 4:32 AM
- Replies
- 4
- Views
- 5,385
Forgot to mention that we can't use the destroy option, as destroy will result in purging all event listeners for the components. This will lead to incorrect application behavior.
The requirement... -
27 Jul 2009 4:20 AM
- Replies
- 4
- Views
- 5,385
Hi All,
We have some very large tabbed pages (sometimes 12 - 15 tabs) in our application, and the total number of DOM elements in the page runs into 1000s (sometimes more than 3000/4000). To... -
15 Feb 2009 3:47 AM
Jump to post Thread: qtips in PropertyGrid by --jack
- Replies
- 4
- Views
- 1,367
You are right. My mistake:-|
The followign did the job:
var index = tip.view.findRowIndex(tip.triggerElement);
var propName = propsGrid.getStore().getAt(index).data.name;
var propValue =... -
15 Feb 2009 3:30 AM
Jump to post Thread: qtips in PropertyGrid by --jack
- Replies
- 4
- Views
- 1,367
Thanks Animal.
It works.
I need one more help.
Can you suggest on which is the best way to get the name and value from the property grid?
Right now I am doing something as follows: -
15 Feb 2009 2:50 AM
Jump to post Thread: qtips in PropertyGrid by --jack
- Replies
- 4
- Views
- 1,367
Hi All,
Is it possible to show qtips in PropertyGrid?
I have a big PropertyGrid grid with many properties. I would like to show a qtip/tooltip to the user when he/she does mouseover on the... -
30 Jan 2009 1:54 AM
Jump to post Thread: Stuck on TreeLoader by --jack
- Replies
- 6
- Views
- 1,930
Thanks crashedsnow
-
22 Jan 2009 10:58 AM
- Replies
- 7
- Views
- 2,750
the node is getting removed from the old parent but is not getting added to the new parent.
i.e even when I use newParent.appendChild(node) -
22 Jan 2009 10:49 AM
- Replies
- 7
- Views
- 2,750
Hi buddy,
It doesn't seem to work.(:|
I even tried something like follows in the success case:
oldParent.removeChild(node);
newParent.appendChild(node); -
22 Jan 2009 10:12 AM
- Replies
- 7
- Views
- 2,750
Hi jgarcia,
Thanks for the reply.
I am a bit new to ExtJS. Can you please explain how I can complete the nodemove in the callback.
I am not getting your point.
The nodemove will be... -
22 Jan 2009 9:46 AM
- Replies
- 7
- Views
- 2,750
Hi all,
I have a tree in which I need to handle the 'beforemovenode' event.
In the 'beforemovenode' event handler I will have to make an Ajax call to server. On the server I do a validation and... -
12 Jan 2009 6:14 AM
- Replies
- 5
- Views
- 2,466
Hi,
I have a textfield and columntree in a page. I want to construct the url for the TreeLoader based on the userinput in the textfield.
All the columntree examples I saw sets the loader and... -
3 Jan 2009 5:27 AM
- Replies
- 2
- Views
- 1,247
Thanks Animal.
A silly mistake. B) -
3 Jan 2009 5:16 AM
- Replies
- 2
- Views
- 1,247
Hi,
I am trying to traverse a TreeNode and its children recursively.
function doSelectDeselect(node, select) {
var childNodes = node.childNodes;
for(i = 0 ; i < childNodes.length;... -
3 Jan 2009 4:30 AM
- Replies
- 2
- Views
- 1,110
Thanks Condor.
It works. -
3 Jan 2009 4:21 AM
- Replies
- 2
- Views
- 1,110
Hi,
I have a dynamic tree with lot of nodes. The user can edit properties of a node or its children.
I want to highlight the nodes and subnodes currently in edit so that the user isgiven a... -
27 Dec 2008 12:31 AM
Jump to post Thread: Stuck on TreeLoader by --jack
- Replies
- 6
- Views
- 1,930
Thanks Condor.
-
26 Dec 2008 2:23 AM
Jump to post Thread: Stuck on TreeLoader by --jack
- Replies
- 6
- Views
- 1,930
Hi,
I have a Tree setup as follows:
var mydataURL = contextPath + "/getNodes.action";
var loader = new Ext.tree.TreeLoader({
dataUrl:mydataURL,
root: 'data'
});
Results 1 to 18 of 18
