Lines Matching refs:ctx
523 treeInit: function (ctx) { argument
529 tree = ctx.tree,
530 opts = ctx.options,
684 nodeKeydown: function (ctx) { argument
687 tree = ctx.tree,
688 node = ctx.node,
692 event = ctx.originalEvent,
722 nodeRemoveChildMarkup: function (ctx) { argument
723 var node = ctx.node;
733 nodeRemoveMarkup: function (ctx) { argument
734 var node = ctx.node;
741 this.nodeRemoveChildMarkup(ctx);
744 nodeRender: function (ctx, force, deep, collapsed, _recursive) { argument
750 tree = ctx.tree,
751 node = ctx.node;
757 var opts = ctx.options,
770 return ctx.tree.redrawViewport();
772 ctx.hasCollapsedParents = node.parent && !node.parent.expanded;
818 this.nodeRenderTitle(ctx); // triggers renderColumns()
822 opts.createNode.call(this, { type: "createNode" }, ctx);
827 opts.renderNode.call(tree, { type: "renderNode" }, ctx);
842 subCtx = $.extend({}, ctx, { node: child });
849 nodeRenderTitle: function (ctx, title) { argument
852 tree = ctx.tree,
853 node = ctx.node,
854 opts = ctx.options,
857 res = this._super(ctx, title);
875 this.nodeRenderStatus(ctx);
883 ctx
898 opts.renderColumns.call(tree, { type: "renderColumns" }, ctx);
902 nodeRenderStatus: function (ctx) { argument
904 node = ctx.node,
905 opts = ctx.options;
907 this._super(ctx);
919 nodeSetExpanded: function (ctx, flag, callOpts) { argument
920 var node = ctx.node,
921 tree = ctx.tree;
945 ctx.options.autoScroll &&
956 ctx
965 ctx
974 ctx
981 this._super(ctx, flag, subOpts)
990 treeClear: function (ctx) { argument
995 treeDestroy: function (ctx) { argument
1004 treeStructureChanged: function (ctx, type) { argument
1006 if (type !== "addNode" || ctx.tree.visibleNodeList) {