Reacting to External Triggers

Hi,

Does anyone know if there's an 'easy' way to have Radzen react to data changes.

eg. create a notification in Radzen when a new row is added to a dataset, or even refresh the dataset,

Matt

Hi @Matthew_Osment,

There is not built-in way that will allow Radzen applications to react on external changes.

Thanks Atanas,

Is there an efficient way to run a process which re-loads the table every 5 minutes or so?

Something like this should work:

setInterval(() => this.grid0.load(), 5 * 60 * 1000)

This should be put in a Execute Code action in the Load event of the page (assuming you have a DataGrid component with Name grid0).