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().
Thanks Shubham Aware Hasini Marturu for clearing the query.Let's say we can expect around 100 records using full list event style.,I am giving page size as 100 ,so all the 100 records are displaying in single page .Is there any way to limit 10per page
You can use the a!eventHistoryListField(pageSize:10) attribute to set 10 rows to be displayed in a page. So change page size to 10 instead of 100 to achieve the expected functionality.
While clicking on the next arrow,the paging is not working
It should work as pageSize is valid parameter for a!eventHistoryListField().What error you are getting and what's total rows you have?
Is it possible to share a code snipped of the configuration or atleast can you share what all parameters you have set in the configuration that might be obstructing this
Its not moving to next page and Im not getting any error
Can you share your code?