dhtmlx grid to pdf generation

Hi,
I am new to this technology; I an=m mainly concerned with grids. When I tried to create pdf from a dhtmlx grid in which some of the columns are disabled, pdf generated is not in the correct format. How can I achieve this. :question: Please help me… :confused:

in which some of the columns are disabled
What do you mean under disabled column?

hi,

What I did is
mygrid.setColumnHidden(2,true);
Similarly I made 4th, 5th and 6th column also hidden. Then try to export to PDF .

Current version of PDF export serialize all columns, even hidden. It not possible to configure which columns must be exported. We plan to add this possibility to the next version of plugin.

ok… Is there any way to adjust the column size ; before exporting to pdf… ?

You can change column width dynamically with setColWidth(ind, value) method.
docs.dhtmlx.com/doku.php?id=dhtm … etcolwidth

Thank you…