SMART datagrid v.1 > Functions
Load CSV text imported from the server to DataSet. It is the same as the code below.
Please refer to DataLoader and TreeDataLoader about more details.
$.ajax({
url: "data/incomes.csv",
dataType: 'text',
success: function (data) {
DataLudi.loadCsvData(dataProvider, data, {
quoted: true,
start: 1
});
}
});