Internet Explorer is the only browser that supports modal windows of any kind. If you need to use modal windows when possible, the following code will activate modal mode in IE, and regular mode in FF etc.
1. Add this code to the JSP page holding RapidSpellWebLauncher
<% String userAgent = request.getHeader("user-agent"); boolean modal = userAgent.indexOf("MSIE")>-1; %>
2. Then set the modal property like this
<RapidSpellWeb:rapidSpellWebLauncher id="rapidSpellWebLauncher1" rapidSpellWebPage="RapidSpellCheckerPopUp.jsp" textComponentName="...." modal="<%=modal%>" />
|