HI Christian/Swarrop,
I could see the data if I display by converting with function decodeURIComponent($.param(data));
But I can bind it. Can you pls guid me..
$.ajax({
type: "POST",
success: function (data) {
alert("success");
var rows = data.Rowsets.Rowset[0].Row;
var Mat = data.Rowsets[Rowset][0][Row][0][MatNo];
//alert("rows"+data.Rowsets.Rowset[0]);
//var result = Y.QueryString.stringify(data);
var result =decodeURIComponent($.param(data)); // it is giving results in Rowsets[Rowset][0][Row][0][MatNo] format
alert("result" +result);
oModel.setData({modelData: rows}); // binding in this way
oTable.setModel(oModel);
oTable.bindRows("/modelData");
},
Regards,
Bikshapathi.