Because query data without filter might spends lots of times.
If user has already chosen fields for report filter.
Dose it possible to add a query button in filter area
with the query button, it will not query data unless user assign all conditions for filter that he wants.
After he assigned all conditions and pressed the query button, it will start the query.
Hello,
Thank you for reaching out to us.
Currently, built-in UI controls do not allow pre-filtering.
However, we have come up with a workaround that may work for you.
It implies developing a custom Field List that would allow the required functionality.
You will find the detailed explanation and the example below.
On the initial load, retrieve all the fields using the getAllHierarchies API call.
Having the enumeration of all fields, it is possible to compose and display the custom Field List.
After the user choose what field needs to be used for filtering, execute the getMembers method to receive the list of members for this field. Use this information to configure the corresponding filtering UI controls. Complement the filtering view with a label filter if needed.
To summarize, the process will look like this:
getAllHierarchies
method and receive the list of all hierarchies.getMembers
method.
Also, we have prepared a JSFiddle to demonstrate this approach: http://jsfiddle.net/flexmonster/8hjrmu4g/.
Please note that this particular JSFiddle is developed for the SSAS data source. It may need to be customized based on your data source (for example, custom data source API).
Please let us know if it works for you.
Our team is looking forward to hearing from you.
Kind regards,
Illia
Dear Illia
Thanks for your rapid response. Current structure is already pretty smooth. Can I use event: runningquery to stop the query manually while there is no filter selected. With that I can add a query button by myself.
Hello,
Thank you for your feedback.
It is not possible to abort the query and continue it later after complementing report filters.
It means you will need to select fields and configure filtering before running the query.
Therefore, we suggest developing a custom Field List that would expand the default functionality and allow the user to configure filtering before executing the query.
Feel free to reach out in case other questions on this point arise.
Kind regards,
Illia