hi dhiraj,
first create a JSON model instance and then set the data to the model.
// create JSON model instance var oModel = new sap.ui.model.json.JSONModel(); // set the data for the model oModel.setData(aData);
and then bind to your table using this.
oTable.setModel(oModel); oTable.bindRows("/");
regards
Indrajith