Hi Anis,
We are unable to check the reported problem from our end since we need some more necessary information from your side . Hence kindly share with us the following details which would be helpful for us to provide the prompt solution for the reported problem at the earliest.
- Confirmation for the assemblies that have been placed at the bin folder of the application which is hosted in IIS.
- Exact console error that you have faced while hosting the application.
- Data source details(OLAP/Relational) and mode details(ClientMode/ServerMode) that have been using in your application.
- Browser details that you have using wile run the hosted sample at your end.
Regards,Sastha Prathap S.
|
function onLoad(args) {
$.ajax({
type: "POST",
url: "../Home/GetData",
contentType: 'application/json; charset=utf-8',
dataType: 'json',
async: false,
success: function (val) {
for (var i = 0; i < val.length; i++) {
val[i]["Defaut"] = val[i]["Defaut"].trim();
val[i]["Section"] = val[i]["Section"].trim();
val[i]["Customer"] = val[i]["Customer"].trim();
val[i]["Order"] = val[i]["Order"].trim();
}
args.model.dataSource.data = val;
},
});
} |