How would one set a static value for a data detail, I tried to to add it with single and double quotes to the Value field, but no luck. The reason I need it like this is because i need to fetch the data with one query, and then using the data detail to filter/split the fetched data in 4 segments/containers based on a static value set in each data detail
To me this should work, but sadly no luck. does any one else have a idea/solution?
This will be shown on a big screen without any user input, I can’t have the on-click event used or any user input. This will be a dashboard which will reload automatically and each section shows server metrics belonging to that container filter value, that was the plan.
I also tried to use the “success” and “Done” events a on the server connect to set the value after the data loaded, but that also did not work.
Which column is this value coming from, how is it called?
And are you sure you need data detail here at all in this case? If you are using a static value, you can directly filter your query and show the results …
If you are not planning to use data detail as i explained above - a list of items in a repeat region and a detail region attached to them on click - then you don’t need data detail here.
Just use the query results directly … and filter your query with your required value.
As mentioned earlier, I can’t execute anything other then what has been given in the form of views. Else is would be really easy indeed and was this post not needed :). I have no other option then to filter it further in the front end.
i have a db view, which provides a resultset, this resultset needs to be presented in a dashboard form with graphs/tables etc in four sections split up by a value.
this is the only way i can get the data for this project, i was also instructed to only fetch the views as is and not put where clauses on it( no idea why, but ok, nothing more then a constraint).
But i got it now to work in the front-end, so i can continue, thank you for your input!