Hello 
I made jqxGrid having money column. It shows $415,350 in jqxGrid.
But when I export to excel file, that data changes to $415,350.00.
How can I remove .00 ? I need only $415,350
var df_MagamSearch = [
...
{ name: 'TotAmt', type: 'number' }
];
var MagamSearchSource = {
dataType: "json",
mtype: 'GET',
datafields: df_MagamSearch,
url: '/Magam/GetMagam'
};
var dataAdapter = new $.jqx.dataAdapter(MagamSearchSource);
$jqxGrid.jqxGrid({
width: 1000,
source: dataAdapter,
columns: [
...
{ text: 'Total', datafield: 'TotAmt', pinned: true, cellsformat: "c"}
...
}
]
});