파란크리스마스 2018. 7. 21. 18:53
728x90

출처

ajax

	// ajax demo
	$('#math_class_tree')
		.on('changed.jstree', function (e, data) {
			console.log('select node id / ' + data.node.id);
		})
		.jstree({
			'core' : {
				'data' : {
					"url" : function(node) {
						console.log('node.id = ' + node.id);
						return "json.mat";
					},
					"data" : function(node) {
						return {
							'cmd' : 'mat_class_table',
							'subcmd' : 'tree',
							'id' : node.id
						};
					},
					"dataType" : "json",
					"success" : function(data, status, res, parent) {
						console.log("test");
					}
				}
			}
		});