Click here to Skip to main content
15,885,720 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I am trying to edit an treepanel row in extjs and i want to foucs and mouse cursor to move for a partcular cell in the selected row.

Please help me.
Posted
Comments
Er Abhay Shukla 19-Feb-14 9:12am    
Can u add some code/sample for it?

1 solution

Your can add code inside listeners>>itemclickif you have more than one cell inside the tree node.

C#
var tree = Ext.create('Ext.tree.Panel', {
    store: store,
    renderTo: Ext.getBody(),
    height: 300,
    width: 250,

    listeners:{
        itemclick: function(n){
         // Add code here to find the cell inside the node.
        }
    }

});


Hope this helps, If not Please provide some sample/code.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900