Hi Experts,
I called the xacute query in ajax and tried to bind with sap ui table.
But I could not get json data from query template,Instead it ruturning result as [object,object],[object,object],[object,object]
With static data Ui5 table is working fine but if bind it following way is working .
Pls help me to resolve it.
var oModel = new sap.ui.model.json.JSONModel();
$.ajax({
type: "POST",
success: function (data) {
alert("ok"+data);
var rows = data.Rowsets.Rowset[0].Row;
alert("rows"+rows);// returning object...... instead of actual results...
oModel.setData({modelData: rows});
oTable.setModel(oModel);
oTable.bindRows("/modelData");
},
error: function (err) {
alert("Local error callback.");
}
});//ajax close
Regards,
Raj.