In the Smartclient Quick Start Guide the following advice is given:
If I read this correctly the browser must be forced in the <!DOCTYPE> tag to run in compatibility mode when I develop with Smartclient. As far as I can see there is only one declaration in HTML 5:
...which is the "standards mode". How do I then set the browser to compatibility mode from the web page? (I do know how to set, for instance Internet Explorer's, mode via its menus but not through DOCTYPE tag)
Thanks!
Code:
Develop and deploy in browser compatibility mode, not “standards” mode. SmartClient components automatically detect and adapt to the browser mode (as determined by DOCTYPE), providing consistent layout and rendering behaviors in both standards/strict and compatibility/quirks modes. However, the interpretation of ―standards mode‖ varies across browsers, and changes across different versions of the same browser. If you develop in “standards mode”, the behavior of your application may change as users perform regular updates to their OS or browser. ―Standards mode‖ in most web browsers is not, as the name implies, a consistent standards-compliant mode.
Code:
<!DOCTYPE html>
Thanks!
Comment