Hey Team, I am displaying a set of info in table in a case. I want to use OOTb filter in the table in case of offline mobile apk. Is it supported in pega. If not then what are the other alternative to achieve a similar functionality.
We have implemented the Mobile search to filter the records dynamically.
@singk5 The OOTB filter feature in Pega tables is not supported in offline mobile applications. Pega’s offline functionality has limitations, including the inability to dynamically apply filters to table data. As an alternative, you can implement client-side filtering using JavaScript or configure pre-defined filters by setting up a data page with conditions applied based on user input before downloading data to the offline mobile application. Another approach is to use dropdowns or other UI controls to let users select filter criteria, and then refresh the data shown in the table from locally cached records. These workarounds require careful design to ensure they work within Pega’s offline architecture.
@Sairohith Hey Rohith ya as of now I am going for client side filtering using Javscript and refreshing the data in the Datapage to update it in the table/ Repeating Dynamic Layout. Thanks for the suggestion.