Regardless of whether using a plain (static) or dynamic textbox, setting up multiple RapidSpellWInline
tags to work with one button simply requires the use of the RapidSpellWebMultiple tag. To do this, add
RapidSpellWebMultiple to the page and give it an “id” attribute. Then set the rsMultipleID attribute in each
RapidSpellWInline to the id of the multiple tag. Lastly, set rapidSpellWebLaunchers to a list of ids to
launch.
Note; if activating As You Type, do not use RapidSpellWebMultiple as it is unnecessary and will
confuse the behavior.
<textarea id="ta" name="ta" rows=14 cols=30 >In thispage we
demenstrate</textarea>
<RapidSpellWeb:rapidSpellWInline
id="rswi"
textComponentID="ta"
rsMultipleID="rswm"
/>
<textarea id="ta2" name="ta2" rows=14 cols=30 >multiple textboxes being
checked</textarea>
<RapidSpellWeb:rapidSpellWInline
id="rswi2"
textComponentID="ta2" rsMultipleID="rswm"
/>
<textarea id="ta3" name="ta3" rows=14 cols=30 >with one button.
Note that RapidSpellWInlineTextBox could have been used in place of
<textarea></textarea>
<RapidSpellWeb:rapidSpellWInline
id="rswi3"
textComponentID="ta3" rsMultipleID="rswm"
/>
<RapidSpellWeb:rapidSpellWebMultiple
rapidSpellWebLaunchers="rswi,rswi2,rswi3" id="rswm"
showFinishedMessage="false" />