mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
Merge pull request #2086 from robert-h-curry/1954-link-editor
BUG Fix JS issues in treedropdownfield for link editor
This commit is contained in:
commit
4df7f5f0f8
@ -114,7 +114,7 @@
|
||||
|
||||
var node = tree.find('*[data-id="' + val + '"]'),
|
||||
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) title=(node.length > 0) ? tree.jstree('get_text', node[0]) : null;
|
||||
|
||||
if(title) self.setTitle(title);
|
||||
if(node) tree.jstree('select_node', node);
|
||||
@ -122,8 +122,8 @@
|
||||
};
|
||||
|
||||
// Load the tree if its not already present
|
||||
if(jQuery.jstree._reference(tree) || !val) updateFn();
|
||||
else this.loadTree(null, updateFn);
|
||||
if(!tree.is(':empty') || !val) updateFn();
|
||||
else this.loadTree({forceValue: val}, updateFn);
|
||||
},
|
||||
setValue: function(val) {
|
||||
this.data('metadata', $.extend(this.data('metadata'), {id: val}));
|
||||
|
Loading…
Reference in New Issue
Block a user