Page 1 of 1

Email Spelling checker

PostPosted: Wed Nov 03, 2021 5:38 pm
by 2can2
Hi, In V7.2 is it possible to add a spelling checker to emails before they are sent?
Ta

Re: Email Spelling checker  Topic is solved

PostPosted: Wed Nov 03, 2021 6:08 pm
by Mike.Sheen
The attached plugin is a good starting point.

It adds a spell checker to the body of the email maintenance form.

When text is rendered, it shows spelling errors with a red squiggly:
EmailMaintenanceSpellChecker.png


And if spelling errors are added to the body, when the focus moves away from the control, the spelling errors dialog shows with some options for correction:
SpellingDialog.png
SpellingDialog.png (20.87 KiB) Viewed 2230 times

Re: Email Spelling checker

PostPosted: Wed Nov 03, 2021 6:25 pm
by SBarnes
Try the link below, looks like Jiwa finds the name space Infragistics.Win.UltraWinSpellChecker so it must be available in the version Jiwa uses.


https://www.infragistics.com/help/winfo ... ellchecker


and on a sales form I was able to get an ultra text editor to show the spell checker property.

Code: Select all
JiwaFinancials.Jiwa.JiwaSalesUI.SalesOrder.BaseSalesOrderEntryForm sform = (JiwaFinancials.Jiwa.JiwaSalesUI.SalesOrder.BaseSalesOrderEntryForm) JiwaForm;
sform.txtTaxExNo.SpellChecker


How you get dictionaries and the dialog to work you would need to read the documentation on.

Ah Mike just beat me to the punch/post

Re: Email Spelling checker

PostPosted: Fri Nov 05, 2021 11:13 am
by 2can2
Thank you both.