SMART datagrid v.1 > Functions
Load XML text or XMLDocument object 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.xml",
dataType: 'text',
success: function (data) {
DataLudi.loadCsvData(dataProvider, data, {
});
}
});