EasyUI Forum
September 14, 2025, 02:12:43 AM *
Welcome, Guest. Please login or register.

Login with username, password and session length
News:
 
   Home   Help Search Login Register  
Pages: [1]
  Print  
Author Topic: onBeforeCheck not work on children tree  (Read 10101 times)
Opan Mustopah
Full Member
***
Posts: 164


Indonesia


View Profile Email
« on: November 09, 2014, 10:47:50 PM »

hello,

i have a problem with onBeforeCheck event on tree plugin.
onBeforeCheck will triggered if will physically checked/clicked some node, but when that node had a child node. the onBeforeCheck event not triggered on that child node.

so how to get it work (event onBeforeCheck) on some child node. i need that child node have that event too.
sorry for my poor english.

thanks in advance
Opan
Logged

-- Bajak Otak --
*** Sorry for my bad english :3 ***
--JeasyUI version 1.4--
stworthy
Administrator
Hero Member
*****
Posts: 3581


View Profile Email
« Reply #1 on: November 10, 2014, 12:25:11 AM »

When a node is checked, the 'onBeforeCheck' event only be triggered on this node. You can call 'getChildren' method to get its child nodes including their state in this event.
Code:
$('#tt').tree({
onBeforeCheck:function(node){
var nodes = $(this).tree('getChildren', node.target);
console.log(nodes)
}
})
Logged
Opan Mustopah
Full Member
***
Posts: 164


Indonesia


View Profile Email
« Reply #2 on: November 10, 2014, 12:38:05 AM »

thanks stworthy for your answer, but
i've already try that, if the node doesn't have child it will trown an error like this on firebug:
Code:
TypeError: _d7 is undefined

so how to check some node hava a child node or not?
thanks
Logged

-- Bajak Otak --
*** Sorry for my bad english :3 ***
--JeasyUI version 1.4--
stworthy
Administrator
Hero Member
*****
Posts: 3581


View Profile Email
« Reply #3 on: November 10, 2014, 07:19:25 AM »

Please call 'isLeaf' method to determine the specified node is leaf.
Code:
var b = $('#tt').tree('isLeaf', node.target);
if (b){
  console.log('is leaf');
}
Logged
Opan Mustopah
Full Member
***
Posts: 164


Indonesia


View Profile Email
« Reply #4 on: November 10, 2014, 07:07:36 PM »

thank you very much stworthy Cheesy
Logged

-- Bajak Otak --
*** Sorry for my bad english :3 ***
--JeasyUI version 1.4--
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines Valid XHTML 1.0! Valid CSS!