Example #1
0
    function DataProvider(root) {
        BaseClass.call(this, root || {});

        this.rowHeight      = 20;
        this.innerRowHeight = 18;

        Object.defineProperty(this, "loaded", {
            get : function(){ return this.visibleItems.length; }
        });
    }
Example #2
0
    function DataProvider(root) {
        BaseClass.call(this, root || {});

        this.rowHeight = 22;
        this.rowHeightInner = 20;
        this.expandedList = Object.create(null);
        this.selectedList = Object.create(null);

        Object.defineProperty(this, "loaded", {
            get: function() { return this.visibleItems.length; }
        });
    }
Example #3
0
 var DataProvider = function(root) {
     TreeData.call(this, root);
     this.rowHeight = 18;
 };
Example #4
0
    function DataProvider(root) {
        BaseClass.call(this, root || {});

        this.rowHeight = 19;
        this.rowHeightInner = 18;
    }