grid, column resize + multi select

Hi,

I have a few questions about the grid 3.0.
I have downloaded your standard edition of the grid 3.0 and placed it on a local page to test it, but I am having some problems.

  1. The columns don’t seem to be resizable. From what I read in the documentation, the default behavior should allow this.
    The resize cursor appears when I mouse over a column border, but I am just not able to resize it.

  2. The package I got when I downloaded from your site doesn’t contain the _debug version of the grid - where would I find this?

  3. Is there a place where I can go see the differences between the standard and professional version?

I hope you can help me out with my questions :slight_smile:

/Aidal

Here is my code:

[code](head script section)

var mygrid;

mygrid = new dhtmlXGridObject(‘folderViewGrid’);
mygrid.setImagePath(“dhtmlxGrid/codebase/imgs/”);
mygrid.setHeader(“col0,col1,col2,col3,col4,col5,col6,col7,col8,col9,col10,col11”);
mygrid.setInitWidths(“200,,,,,,,,,,,*”);
mygrid.setColAlign(“left,left,left,left,right,left,left,left,left,left,right,left”);
mygrid.setColSorting(“str,str,str,str,int,date,date,str,str,str,int,str”);

mygrid.init();

mygrid.setSkin(“light”);
mygrid.enableMultiselect(true);

mygrid.parse();
[/code]

[code](body section)

[/code]
  1. The columns don’t seem to be resizable. From what I read in the documentation, the default behavior should allow this.
    The resize cursor appears when I mouse over a column border, but I am just not able to resize it.

In your code:
mygrid.setInitWidths(“200,,,,,,,,,,,");
"
” - means that the column will take all available space. Such column cannot be resized.

  1. The package I got when I downloaded from your site doesn’t contain the _debug version of the grid - where would I find this?
    dhtmlxcommon_debug.js is included only in PRO version of dhtmlxGrid.

  2. Is there a place where I can go see the differences between the standard and professional version?
    The differences between Pro and Standard versions you can find here:
    dhtmlx.com/docs/products/dhtmlxG … ions.shtml

Hmm it is a shame that the debug isn’t available for standard version like it was in previously versions.

The need to pinpoint a problem is always required and even more so while you’re testing if the dhtmlx grid component is one that you can use for your project (aka before you buy it).