on ‎2016 Oct 16 5:40 PM
Dear Gurus
i created the below OData service that contains two entities

Then i created the app i started with the first view and the controller then in it i wrote the following code
onLogin: function(){
var sURI = "proxy/http/localhost:9999/MIKMOWCFDataService.svc/";
var oModel = new sap.ui.model.odata.ODataModel(sURI, false);
oModel.oHeaders = {
"DataServiceVersion": "2.0",
"MaxDataServiceVersion": "2.0"
};
var aFilter = [];
aFilter.push(new sap.ui.model.Filter("VendorEmail", sap.ui.model.FilterOperator.EQ, this.getView().byId("txtUserName").getValue()));
aFilter.push(new sap.ui.model.Filter("VendorPassword", sap.ui.model.FilterOperator.EQ,this.getView().byId("txtPassword").getValue() ));
oModel.read("/tbl_Vendors", {
filters : aFilter
});
sap.ui.getCore().setModel(oModel,"vendors");
}What i'm trying to achieve from the code is to get the user id after he submits his email and password i managed to return the correct row from the DB but after that i was not able to read the ID property from the returned data it's only done through using list and press on the list item to fire another event and then read the ID which is not reasonable in the giving example can any one help me on how to read the property directly from the model Thanks in advance
Request clarification before answering.
you don't have to do anything, that is callback function, "they" will fill the odata for u.
put a breakpoint in that method, and put oData in the console, you will see
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 9 | |
| 7 | |
| 6 | |
| 4 | |
| 3 | |
| 3 | |
| 3 | |
| 2 | |
| 2 | |
| 2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.