Does anyone know a nice way to prevent SmartGWT from creating TextItem form items with the spellcheck="true" set? It s annoying to get spellcheck markers on name fields etc.
The nuclear option is to hack out the problem js code from the smartGWT library, or replace the js method at runtime with:
formItem.setAttribute("getBrowserSpellCheck", JavaScriptObject.createFunction());
But this is clearly not an ideal approach.