Hello,
It is possible to extract specific columns into excel and not all columns of the gridview?
Thanks in advance,
Eleni
2 Answers
You can set export:false
$col = array();
$col["title"] = "Id"; // caption of column
$col["name"] = "id";
$col["width"] = "10";
$col["export"] = false;
$cols[] = $col;
Your Answer