BUGFIX: updating the value of a tree dropdown field, its title is not updated accordingly if using TreeTitle as the drropdown item title

This commit is contained in:
Normann Lou 2012-05-07 15:43:25 +12:00
parent 4e18cc581b
commit cd13c0e178

View File

@ -122,9 +122,11 @@
var updateFn = function() {
var val = self.getValue();
if(val) {
var node = tree.find('*[data-id="' + val + '"]'),
title = (node) ? tree.jstree('get_text', node[0]) : null;
title = node.children('a').find("span.jstree_pageicon")?node.children('a').find("span.item").html():null;
if(!title) title=(node) ? tree.jstree('get_text', node[0]) : null;
if(title) self.setTitle(title);
if(node) tree.jstree('select_node', node);
}