talpor / django-dashing

django-dashing is a customisable, modular dashboard application framework for Django to visualize interesting data about your project. Inspired in the dashboard framework Dashing
BSD 3-Clause "New" or "Revised" License
731 stars 108 forks source link

Is it possible to detect a user action in one widget and act as consequence in other widget? #83

Closed romanrdgz closed 6 years ago

romanrdgz commented 6 years ago

For example, clicking over a item in a List widget, and then showing the contents in a different widget. Is that feasible? Could you provide some example to this?

mtdb commented 6 years ago

This app does not provide any way to do that in a simple way, you can use jQuery to detect the event and act in consequence something like: $(".widget-number[data-col='2'][data-row='1']").on('click', ...)