I have a spell checker (version 11.0.66.2) that I have lightly customized by adding bootstrap classes to controls. My 'AddCustomButton' ('add to dictionary') is disabled upon rendering. This is occurring running from localhost and as deployed. This has worked in the past.
All other controls within the dialog are active and working as expected. These have also been customized by adding bootstrap classes.
Source:
Code: HTML/ASPX
<asp:Button ID="AddCustomButton" runat="server" CssClass="btn btn-default" Text="Add to Dictionary" />
As rendered
Code: HTML/ASPX
<input name="ctl00$MainContent$SpellCheckerDialog1$ctl00$AddCustomButton" tabindex="0" disabled="" class="btn btn-default" id="ctl00_MainContent_SpellCheckerDialog1_ctl00_AddCustomButton" onclick='javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions("ctl00$MainContent$SpellCheckerDialog1$ctl00$AddCustomButton", "", true, "", "", false, false))' type="submit" value="Add to Dictionary">
Code: XML
<appSettings>
<!--Essential Objects spell checker dictionary library location-->
<add key="eo_DictLocation" value="~/interfaces/assets/dictionary/"/>
...
</appSettings>
My Dictionary directory contains /en_US/
en_US.aff
en_US.dic
README_en.US.txt
user_words.txt {has content from previous additions}
What might be causing this? I've not seen anything in the CHM suggesting that the 'Add to Dictionary' capability could be disabled.