Hi Team
I have a requirement where I need to pass exportFormat just to the row while I export in excel xlsx.
Columns is working fine like below but I need is exportFormat for cell or row
webix.toExcel($$(“table”), {
rawValues:true,
columns:[
{ id:“year”, header:“Released”, exportType:“date”, exportFormat:“d-mmm-yy”},
{ id:“votes”, header:“Votes”, exportType:“number”, exportFormat:"#,##0.00"}
]
});