
I have Overridden case edit page with custom VF page, now i need to add the standard check spelling button or custon check spelling button to the edit page.
Please guide me if any have ideas.
Thnaks
Venkat.
1 个回答
I don't think there's a way to do this in Visualforce aside from including a link to a JavaScript spell checker. Otherwise, make sure you're using a modern browser like Internet Explorer 10, Firefox, or Chrome as recommended in the comments; all of these have spell checking built in.
If however, you're attempting this from a standard page layout, you could try creating a new JavaScript Custom Button with this code:
doSpell({ctrl:'tsk6',lang:'en_US',title:'Check Spelling',intLang:'en_US'}, '/servlet/SProxyWrapper', document.location.protocol + '//' + 'spell-chi.salesforce.com/spellcheck', 'There is nothing to check', 'We are sorry,our spellchecker currently does not support the browser you are using. Please upgrade your browser.', 'The Spell Checker is not available in this language.');
Please note, this is a hack that uses functionality that Salesforce may discontinue or make unavailable in the future.
ref:http://salesforce.stackexchange.com/questions/13046/adding-the-standard-check-spelling-button-to-a-visualforce-page