Author Topic: Display grid hidden columns in exported Excel or spreadsheet  (Read 363 times)

hirehop

  • Pro Ultimate
  • Newbie
  • *
  • Posts: 41
    • View Profile
Display grid hidden columns in exported Excel or spreadsheet
« on: January 09, 2024, 08:32:15 pm »
Hello
right now i have facing some issue regarding export to excel,
have some dynamic coulms which are hidden and  that is okay while export its there in export but issue is only column width is 0.

i have tried with set width in colmodel, in eachcell function set manually width but its not working
please give some solution for set hidden column width in export excel

thank you
« Last Edit: January 11, 2024, 12:06:40 pm by paramvir »

paramvir

  • Administrator
  • Hero Member
  • *****
  • Posts: 6282
    • View Profile
Re: Export excel hidden column width
« Reply #1 on: January 10, 2024, 04:19:46 pm »
From your message, it seems you have hidden columns in grid which you want to display in exported Excel.

To unhide the columns in exported Excel, please use eachCol callback parameter of exportData method.

Code: [Select]
eachCol: function(col){
col.hidden = false;
}

You can set width of visible columns in exported Excel.
« Last Edit: January 10, 2024, 04:45:09 pm by paramvir »

hirehop

  • Pro Ultimate
  • Newbie
  • *
  • Posts: 41
    • View Profile
Re: Export excel hidden column width
« Reply #2 on: January 10, 2024, 07:55:00 pm »
Thanks its wrk