diff --git a/static/scripts/form_2.js b/static/scripts/form_2.js index 84c0ea0235756d510e82d20f50759c13e7dede3f..61355c150be87e761e12b7fa34a29f9ccfc36f27 100755 --- a/static/scripts/form_2.js +++ b/static/scripts/form_2.js @@ -24,7 +24,7 @@ var main = function(provider, response){ var form = new App.form.EntryFormPanel(cfg); // the viewport to hold the form - // using all space in the browser + // using all space available in the browser var vp = new Ext.Viewport({ region: 'center', layout: 'fit', diff --git a/static/scripts/grid_2.js b/static/scripts/grid_2.js index de57d22cf9d7be55217a9e9e66c2a003a4118c3c..816078df819c1669f1a73e7f9abede869797713e 100755 --- a/static/scripts/grid_2.js +++ b/static/scripts/grid_2.js @@ -20,17 +20,9 @@ var main = function(provider, response){ // instanciate the grid var grid = new App.grid.Grid(cfg); - grid.store.load({ - params: { - start: 0, - limit: 1 - } - }); - -// console.dir(grid); - + // the viewport to hold the grid - // using all space in the browser + // using all space available in the browser var vp = new Ext.Viewport({ region: 'center', layout: 'fit',