How to export only visible columns(i have hidden columns) to excel in aggrid? -


i have 6-7 columns in aggrid. out of which, 1 hidden column. how export visible columns in excel file without hidden column?

function exporttoexcel() { var excelparams = {         allcolumns: true,         onlyselected: false,         filename: "export_data.csv",     };      gridoptions.api.exportdataascsv(excelparams); } 


Comments

Popular posts from this blog

Sort a complex associative array in PHP -

vb.net - How to ignore if a cell is empty nothing -

recursion - Can every recursive algorithm be improved with dynamic programming? -