cancel
Showing results for 
Search instead for 
Did you mean: 

Filter and Sort properties are not working on table column

Former Member
0 Kudos

Hi All,

I have a requirement, to display the data in the table format.

by using sap.ui.table , displayed the table and binding (using Odata model) is also working. But the sort and filter properties are not working.

Using the XML views.

Referred the following blog.

https://blogs.sap.com/2016/09/03/sapui5-sapuitable-xml-view/

Can any one help in this regards.

Following is the code i am using.

<table:Table id="Promo" visibleRowCount = "10" firstVisibleRow = "3" electionMode = "Single" enableBusyIndicator = "true" enableSelectAll = "false" navigationMode = "Paginator" selectionMode = "Single" rowSelectionChange= "rowSelect" rows = "{ path : 'modelName>/EmpSet', templateShareable:true }">

<table:columns>

<table:Column width="11rem" filterProperty = "modelName>fname" sortProperty ="modelName>fname" >

<Label text="Promocode"/>

<table:template> <Text text="{modelName>fname}" templateShareable="true"/> </table:template>

</table:Column>

<table:Column width="11rem"> <Label text="lname"/>

<table:template> <Text text="{modelName>lname}" templateShareable="true"/> </table:template>

</table:Column>

</table:columns>

</table:Table>

Thanks,

Kasi.

Accepted Solutions (0)

Answers (1)

Answers (1)

junwu
Active Contributor
0 Kudos

does your odata support sort and filter?

Former Member
0 Kudos

How to check whether odata support these properties or not.

Is it version dependent?

junwu
Active Contributor
0 Kudos

ask your odata developer, it has to be coded.