Hi Flexmonster Team,
I'm currently working on implementing the pivot table using Custom Datasource API and have a few questions about the general behavior of the table, particularly regarding the select requests/responses and aggregations logic.
At the moment, I'm relying on manual testing and observing UI results based on the only provided example here:
https://jsfiddle.net/flexmonster/j1c6rd24/,
However, I’ve encountered some unclear behaviors and would greatly appreciate your clarification, or ideally, access to any relevant written documentation
1. Aggregation Logic During Expand
I've observed that during an expand action, the response from the select request seems to only return new aggregations, while the table still displays all data, including previous values.
2. General Table Behavior Within a Session
Could you provide more detail on how the table behaves with regard to:
3. Filter Selection Persistence
I've noticed that filter value selections don't always persist between interactions. Specifically:
Thank you,
Veronika
Hello, Veronika!
Thank you for reaching out to us.
You are welcome to check the following docs when implementing custom data source API:
From our experience, the provided documentation is enough to cover all the basic steps of the implementing process.
Regarding your questions, please find more detailed comments from our Tech team below:
1. Aggregation Logic During Expand
/select
request. So, the server just needs to provide the client with the data specified in the request; everything else is handled by Flexmonster for the simpler implementation process.2. General Table Behavior Within a Session
3. Filter Selection Persistence
By default, Flexmonster doesn't save the state of the grid after each user interaction. So, if the page was reopened or reloaded, we will show the grid configuration specified in the initial report object. Kindly note that this behavior is consistent for all data sources, including custom data source API.
You can implement caching of the last user actions on your own by using our getReport() API call to save the last configurations and then setReport() to apply them on the next load.
Hope you will find our answer helpful.
Do not hesitate to ask if there are any further questions.
Kind regards,
Solomiia