Welcome to the JavaScript feedback portal. We’re happy you’re here! If you have feedback on how to improve the JavaScript, we’d love to hear it!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

2
Votes

When opening the mentioned dictionary "Index out range exception is faced"


https://github.com/wooorm/dictionaries/tree/main/dictionaries/es-US


Code snippet.

 string dictionaryPath = env.ContentRootPath + "\\App_Data\\es_US.dic";

            string affixPath = env.ContentRootPath + "\\App_Data\\es_US.aff";

            string customDict = env.ContentRootPath + "\\App_Data\\customDict.dic";


            List items = new List() {

               new DictionaryData(1046,dictionaryPath,affixPath,customDict)

            };

            spellDictCollection = new List();

            foreach (var item in items)

            {

                spellDictCollection.Add(new SpellCheckDictionary(item));

            }