I have my REST endpoint like https://myadress/api/getList?days=5&&weeks=1
In my plugin I want to have a form with 2 inputs for days
and weeks
to allow users to make their choice and then make server request with this parameters and build a chart based on it.
Questions:
- can I make these server requests in Panel plugin directly, or should it be in done outside, say in Datasource or App plugin?
- Can I place my form on the bottom of the Panel, where
Query
andTransform
tabs are?
What is the right way to implement stuff like this, please?