How can I make the grid take up 100% of the sidebar cell? Currently the width only takes about 70%, I would like it to be 100%
Here is most of the grid code
this.data = data;
this.originalData = data;
this.grid.setHeader("Person,Roles,UserName,CanLogIn,PersonID");
this.grid.setColAlign("left,left,left,left, left");
this.grid.setColTypes("coro,clist,edtxt,ch,edtxt");
this.grid.enableResizing("false,false,false,false, false");
this.grid.setColumnHidden(this.personIdColumn, true);
this.grid.enableAutoWidth(true);
this.grid.enableAutoHeight(false, 300);
this.grid.setImagesPath("../Content/");
this.grid.init();
...