How to determine which Browser is used ?

0
Hi Mendix Community, Is there any way in Mendix where we can identify which browser is used while using the application ? Thanks in advance !!
asked
2 answers
1

In javascript this is available through:

navigator.userAgent

and in a microflow I think you can pass the system.httpRequest entity as a parameter and read the headers over the association. You should be looking for the user-agent header.

 

answered
4

There has already been some work done for you here;

https://forum.mendix.com/link/questions/8583

Hope it helps :)

answered