Skip to main content

What is the best method to refresh a table when various filters have been selected? A refresh button I created currently queries the model, it refreshes the dashboards, but if you had selected a filter from the table, the values do not refresh and stay the same. Any ideas would be appreciated. Thanks!


Roger -


Thanks for your question! Are both your charts and your table on the same model? If so, the charts should refresh every time the table filter is selected. If your chart is using a different model from your table - set a model action to query the chart model whenever the table model is requeried.



Hopefully this answers your question! Good luck!

Christine


Roger, if you’re using a JavaScript snippet, you can also call a chart to load specifically by calling the following:


skuid.$C('yourChartsIdHere').render();


However, I try to do things declaratively as much as possible like Christine suggested.


Reply