Can I have a grid without any border?

If the number of rows in the grid are less (like 2 or 3) which don’t occupy the complete window, still I can the default border of the grid. Is there a way to hide or remove the border.

You can update it in dhtmlxgrid.css
For example , for XP skin it will be
div.gridbox_xp{
border:1px solid lightgrey; //can be removed
}

or add next line to the grid’s init
grid.entBox.style.border=“0px solid white”;