Код: Выделить всё
$(document).ready(function() {
$.ajax({
type: "get",
url: "https://localhost:44366/Dashboard/JsTree?handler=ArrayData",
contentType: "application/x-www-form-urlencoded",
success: function (data) {
// 1 - This does not work although it is identical to line as #2 below.
$('#jstree_demo_div').jstree({ 'core' : { 'data' : [ 'First', 'Second' ] } });
}
});
});
// 2 - When this is enabled. It works.
//$('#jstree_demo_div').jstree({ 'core' : { 'data' : [ 'First', 'Second' ] } });
Кто -нибудь еще столкнулся с этой проблемой?>
Подробнее здесь: https://stackoverflow.com/questions/796 ... hen-called
Мобильная версия