Dear Team,
I have a scenario in which I need to take the value entered in textfield placed inside the table cell.
Pls help urgent how can I achieve this.
Below is the screen attached, where I want value from marked textfields.
Regards,
Bhavin Anajwala
(+91)9028603512
Hi Bhavin,
You can get the context of the row that you have highlighted.
var tab= sap.ui.getCore().byId('tab'); var oParams = tab.getContextByIndex(3); var oData = this.getModel().getProperty(oParams.sPath);
The oData will contain the data associated with the line.
Please let me know if this helped ?
Thanks,
Zuber
Add a comment