Lines Matching refs:obj
17 static setCsvData(obj: any): void {
23 let data = obj.data;
24 let isShowLabel = typeof obj.showLabel === 'undefined' ? true : obj.showLabel;
25 let fileName = (obj.fileName || 'UserExport') + '.csv';
26 let columns = obj.columns || {
54 row = that.getCsvStr(columns,obj,n,row);
70 static getCsvStr(columns: any,obj: any,n: any,row: string){
74 if (obj.exportFormatter && obj.exportFormatter.has(m)) {
75 strItem = obj.exportFormatter.get(m)?.(n) || n[m];
76 } else if (obj.formatter && obj.formatter.has(m)) {
77 strItem = obj.formatter.get(m)?.(n[m]) || n[m];