Is there GWT api that will tell me which browser version it detected?
I've found a flaw with IE7's regex handling and need to code around some tricky String.matches() expressions.
|
Is there GWT api that will tell me which browser version it detected? I've found a flaw with IE7's regex handling and need to code around some tricky String.matches() expressions. |
|||||||
|
|
You could use GWT deferred binding using replacement and create two implementations of your class in which you use regex. For example let's assume your class is named
Then by calling
you should have a proper (web browser dependent) implementation of You can find more details here. |
||||
|
|
You can detect the browser type using the code below.
Then you can call that function and look at the type of the browser. For example the code below decides whether it is internet explorer or not.
This page has the User Agent for just about every browser known to man. |
|||||||
|
|
Use GXT.isChrome to detect chrome and you can find different data members of GXT class to detect a particular browser. |
|||||||
|