-
19 Feb 2007 12:17 PM #11
After insert
<script type='text/javascript'>
Ext.BLANK_IMAGE_URL="http://localhost/blabla../resources/images/default/s.gif";
</script>
in the header it works fine on my local machine.
For Online Reason maybe Jack will host that little s.gif for all geeks worldwide.
hock:
-
20 Feb 2007 2:08 AM #12
Hi,
after updating a node with the editor the node is not reloaded or updated, any ideas?
following code i'm using
Code:var ge = new Ext.Editor(new Ext.form.TextField({ allowBlank:false, blankText:'A name is required', width:100 }), { parentEl: tree.getEl() }); // listen for a dblclick on a node // and start editing. return false to cancel the default click action. tree.on('dblclick', function(node){ if(tree.getSelectionModel().isSelected(node)){ ge.startEdit(node.ui.textNode); return false; } }); // Update value in rs ge.on('complete', function () { YAHOO.util.Connect.asyncRequest('GET', 'saveNode.php?newName=' + ge.getValue() +'&renameId=' + tree.getSelectionModel().getSelectedNode().id); });
-
20 Feb 2007 4:13 AM #13
There's a config option: updateEl:true
Similar Threads
-
treepanel of yui-ext 0.40
By humpdi in forum Ext 1.x: Help & DiscussionReplies: 7Last Post: 20 Feb 2007, 2:51 PM -
TreePanel
By dolittle in forum Ext 1.x: Help & DiscussionReplies: 5Last Post: 20 Feb 2007, 2:12 PM -
Bug in new TreePanel
By manugoel2003 in forum Ext 1.x: BugsReplies: 2Last Post: 24 Jan 2007, 11:43 PM -
TreePanel
By seldon in forum Ext 1.x: Help & DiscussionReplies: 3Last Post: 12 Jan 2007, 1:40 PM -
new TreePanel
By alex1er in forum Community DiscussionReplies: 2Last Post: 8 Jan 2007, 10:31 AM


Reply With Quote