print grid data without hidden column

Hello all,
How to print grid data without hidden column?

Please help me.

Thanks advance.

What printing extension do you use?

I m using grid object’s printview method. It is just like below.
objInventoryGrid.printView();

It shows grid data in new window with all columns(also hidden column), but I don’t want hidden column.

Thanks for reply me.

You can configure which columns must be printed with printView() method with setSerializableColumns(list) method docs.dhtmlx.com/doku.php?id=dhtm … blecolumns

thanks for reply,

but It does not work.

I use following code:
objInventoryGrid.setSerializableColumns(“true,false,true,true,true,false,false,false,false,false,false,false,false,false,false”);
objInventoryGrid.printView();

But all columns are printed,

Please help me.

Lot of Thanks advance.