jqwidgets-scripts-custom
Version:
jQWidgets is an advanced jQuery, Angular 7, Vue, React, ASP .NET MVC, Custom Elements and HTML5 UI framework.
11 lines • 395 B
JavaScript
define(["jQuery", "demos", "jqxcore", "jqxbuttons", "jqxtree", "jqxpanel", "jqxscrollbar"], function () {
var initialize = function () {
$(document).ready(function () {
$('#jqxTree').jqxTree({ height: '300px', width: '300px' });
$('#jqxTree').css("visibility", "visible");
});
};
return {
initialize: initialize
};
});