I am using a Smart Table in my SAPUI5 app with no custom columns, so all the columns are coming from OData. One column should be like a link, so if user presses the data in the column, it should open up a dialog or fragment to navigate further or execute an action. So two questions, I have not been able to figure out:
CellClick
or similar)?<smartTable:SmartTable>
<Table>
<columns>
<Column>
<customData>
<core:CustomData key="p13nData" value='\{"columnKey": "yourKey", "leadingProperty": "yourLeadingProperty", "columnIndex": theIndex}'/>
</customData>
<Text text="{i18n>YourPropertyName}"></Text>
</Column>
</columns>
<items>
<ColumnListItem>
<Link text="{LinkText}" href="YourLink"/>
</ColumnListItem>
</items>
</Table>
</smartTable:SmartTable>