Hi,
I want to get the value of a cell from a sap.ui.table, when I click on that cell. This cell is having 'Link' parameter; so, when I press on the link it's firing an event. In that evnt I should be able to get that value of that cell. Below is the code.
<Column width="auto" filterProperty="Owner" defaultFilterOperator="StartsWith"> <m:Label text="{i18n>opOwner}"/> <template> <m:Link text="{tableModel>Owner}" press="handleLinkPress"/> </template> </Column>
handleLinkPress : function(oEvent){ var cell = "";
He in variable 'cell' I need to capture the Text of that cell.
I'm new in SAPUI5. Any help would be much appreciated. It would be very helpful if I can get the proper syntax.
Also, how to add date filter in date column.
<Column width="auto" filterProperty="Start_Date" defaultFilterOperator="StartsWith"> <m:Label text="{i18n>opstartdate}"/> <template> <m:Text text="{path: 'tableModel>Start_Date', type: 'sap.ui.model.type.Date', formatOptions: { pattern: 'dd/MM/yyyy' } }"/> </template> </Column>
I've added the filter, but it's not working
Thanks,
Shubhrajit Chowdhury