SMART datagrid v1.4 > Classes > TreeDataSet

[ grids ver.1.4.2]   Back  Forward

DataLudi.TreeDataSet.exportToCsv  method

매개변수 options에 지정한 설정에 따라 데이터셋을 csv 문자열로 변환한다. 

function exportToCsv (options: Object|DataOutputOptions, recursive: Boolean): String;
Returns
String
Parameters
options - Object|DataOutputOptions.
recursive - Boolean. 기본값은 false.
기본값은 false(true일 경우 모든 자손행의 데이터를 가져온다)
Code -1
    var s = dsMain.exportToCsv({
        datetimeFormat: 'yyyy/MM/dd',
        quoted: true,
        valueCallbacks: {
            "cust_id": function (row, field, value) {
                if (value && value.indexOf('(') == 0) {
                    return value + ' Inc.';
                }
                return value;
            }
        }
    },true);
  
See Also
DataOutputOptions