Supported Target Elements
29 Sep 20175 minutes to read
The SpellCheck control has support for spell checking the HTML element’s texts such as div, span, textarea, input, address, article and IFrame elements.
Multiple Target
The SpellCheck control has support for multiple target HTML element’s texts spelling and correct its error words. This can be achieved by passing the target HTML elements “id” values or “CSS Class Name” or combination of both id and class names to the property ControlsToValidate.
The following code example describes the above behavior.
<div id="control1">
London, one of the most popular touist destinations in the world for a reason. A cultural and hisorical hub, London has an excellent public transportation system that allows visitors to see all the fantatic sights without spending a ton of money on a rental car. London contains four World Heritage Sites.
</div>
<textarea id="control2" style="width: 99.3%; height: 80px">
Paris, the city of lihts and love - this short guide is full of ideas for how to make the most of the romnticism that oozes from every one of its beautiful corners.You couldn't possibly visit Paris without seeing the Eiffel Tower.
Even if you do not want to visit this world famous structure, you will see its top from all over Paris.
</textarea>
<span id="control3">
Rome, one of the world's most facinating cities. The old adage that Rome was not built in a day - and that you won't see it in one or even in three - is true. For the intrepid traveler who can keep pace, here is a list of must-sees. But reember what the Romans say: Even a lifetime isn't enough to see Rome.
</span>
<ej:SpellCheck ID="SpellCheck" ClientIDMode="Static" runat="server" ControlsToValidate="#control1,#control2,#control3">
<DictionarySettings DictionaryUrl="../api/SpellCheck/CheckWords" CustomDictionaryUrl="../api/SpellCheck/AddToDictionary" />
</ej:SpellCheck>
You need to pass the target HTML element’s id value or CSS class name or combination of the id value and class name with comma separator. Passing the class name followed by (.) character and passing the id value followed by the (#) character.
The following code example describes the spell checking of HTML element’s.
<div id="control1">
London, one of the most popular touist destinations in the world for a reason. A cultural and hisorical hub, London has an excellent public transportation system that allows visitors to see all the fantatic sights without spending a ton of money on a rental car. London contains four World Heritage Sites.
</div>
<textarea id="control2" style="width: 99.3%; height: 80px">
Paris, the city of lihts and love - this short guide is full of ideas for how to make the most of the romnticism that oozes from every one of its beautiful corners.You couldn't possibly visit Paris without seeing the Eiffel Tower.
Even if you do not want to visit this world famous structure, you will see its top from all over Paris.
</textarea>
<span id="control3">
Rome, one of the world's most facinating cities. The old adage that Rome was not built in a day - and that you won't see it in one or even in three - is true. For the intrepid traveler who can keep pace, here is a list of must-sees. But reember what the Romans say: Even a lifetime isn't enough to see Rome.
</span>
<ej:SpellCheck ID="SpellCheck" ClientIDMode="Static" runat="server" ControlsToValidate="#control1,#control2,#control3">
<DictionarySettings DictionaryUrl="../api/SpellCheck/CheckWords" CustomDictionaryUrl="../api/SpellCheck/AddToDictionary" />
</ej:SpellCheck>
<ej:Button ID="CheckButton" Type="Button" ClientSideOnClick="showInDialog" Text="Spell Check using Dialog" runat="server"></ej:Button>
<script type="text/javascript">
function showInDialog() {
var spellObj = $("#SpellCheck").data("ejSpellCheck");
spellObj.showInDialog();
}
</script>
The SpellCheck component iterates through the target elements which specified in the “ControlsToValidate” property, and process the element’s content one by one in the order of CSS elements, and id specified elements.
IFrame Element
The below code example shows the way to spell check the IFrame target element text.
<iframe id="Spell" ClientIDMode="Static" src="iframesource.html" height="300" width="800"></iframe>
<ej:SpellCheck ID="SpellCheck" ClientIDMode="Static" runat="server" ControlsToValidate="#Spell">
<DictionarySettings DictionaryUrl="../api/SpellCheck/CheckWords" CustomDictionaryUrl="../api/SpellCheck/AddToDictionary" />
</ej:SpellCheck>
<ej:Button ID="CheckButton" Type="Button" ClientSideOnClick="showInDialog" Text="Spell Check using Dialog" runat="server"></ej:Button>
<script type="text/javascript">
function showInDialog() {
var spellObj = $("#SpellCheck").data("ejSpellCheck");
spellObj.showInDialog();
}
</script>
NOTE
If you want to spell check the IFrame’s element content, you need to pass the IFrame element alone in ControlsToValidate property. You could not perform the spell check with the combination of other elements with IFrame element.