I found that printing and exporting, in data-export-tree-grid , could not make an output of number format keeping like Currency Format or others ($123,123).
Somebody help me to make output with keeping Currency Format Cells.
Even if Also formatFunction caused the trouble….
{ label: ‘testField’, dataField: ‘testField’, width: 100, cellsAlign: ‘right’,
formatFunction(settings) {
settings.value = new Number(settings.cell.value).toLocaleString(‘ko-KR’) + ‘원’;
}
},
-
This topic was modified 5 hours, 41 minutes ago by 준진 이.