URLRedirector keeps triggering

0
I have a URLRedirector in a data view. The data view listens to a data grid above. The data grid contains a column with the url link. I believe this was working fine before but recently when clicking on the url link in the data grid the application keeps launching the link over and over again .. so tab after tab after tab, etc keeps opening.  Perhaps because the url link remains highlighted in the data grid? Has anyone else experienced this or have any solutions on how to prevent this?
asked
2 answers
2

Do you have any non-zero refresh time on the data grid?
If so, set the refresh time to 0 (no refresh).

Any refresh of the datagrid will trigger a refresh of the listening data view, hence triggering the url redirector.

answered
2

Hi Tracy, you could try to use a microflow (possibly with the use of a helper entity) instead of a data view to create the URL for your URLRedirector. That way you prevent tabs keep being openend in your browser, since the microflow is only called once. I hope this might help you.

answered