My web pages work fine with Dojo 1.6.1 and firefox 10.0, but the old browser in MyEclipse gives an invalid template for the dojoTypes:
dijit.form.HorizontalSlider
and
dijit.layout.TabContainer
Commenting them out and makiing other changes bypasses the problem but is not a solution.
Using the below in a jsp file gives the browser versions being used:
final String sUserAgent = request.getHeader(“User-Agent”);
System.out.println(“The user agent is “+sUserAgent);
For the AJAX web broser
The user agent is Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.0.7) Gecko
For the working Firefox 10.0 browser
The user agent is Mozilla/5.0 (Windows NT 6.0; WOW64; rv:10.0) Gecko/20100101 Firefox/10.0
Is there a way to upgrade the AJAX browser to a more recent version.