Im using event history in my grid ,My event history data has more than 40 records which event type and pagination can be used.I saw the limitation of 100 records in full list
Wif there are more than 100records how we can manage.
When the user clicks the next page its not working.
Please suggest better solution for this scenario
If more than 100 records needs to be displayed in eventhistory lis how we can configure.
Thanks,
Priyadharshini. S
Discussion posts and replies are publicly visible
a!eventHistoryListField() has a hard limit of 100 records - there is no built-in pagination support beyond that. Appian does not expose an offset/pagingInfo parameter for this component.Replace a!eventHistoryListField() with a custom grid using a!gridField() querying the eventHistory related record, with your own a!pagingInfo() for pagination.My Recommendation : a!eventHistoryListField() is best for record-level event history. In practice, it rarely exceeds 100 rows per record. If it does, show only the latest 100 records - the component provides better UI with no extra effort. For edge cases requiring full history pagination, use a!gridField() with eventHistory relationship and a!pagingInfo().