loadData : function()

in app/scripts/controllers/grid/grid.js [61:72]


        loadData : function(properties) {
            var controller = this;

            this.getData(properties, function(json, textStatus) {
                controller.set('rows', json[controller.root]);
                controller.set('pagesCount', json[controller.pagesCountProperty] ? 
                    json[controller.pagesCountProperty]  : 1);
                controller.set('pageNumber', json[controller.pageNumberProperty] ? 
                    json[controller.pageNumberProperty]  : 1);
            });

        },