SMART datagrid v.1 > Functions
Load JSON 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.json",
dataType: 'text',
success: function (data) {
DataLudi.loadJsonData(dataProvider, data, {
});
}
});