Since RapidSpell does not know how to access the text of a 3rd party control on the serverside, it needs to be given the text when it is validating. By attaching to the RapidSpellWInline.ValidatorNeedsText (or RapidSpellWebLauncher.ValidatorNeedsText) event and using it like this
private void RapidSpellWInline1_ValidatorNeedsText(object sender, Keyoti.RapidSpell.ValidatorNeedsTextEventArgs e) { e.TextBoxText = HtmlBox1.Text; }
you are able to pass the current text from your text control (HtmlBox1). [The above is only available in builds greater than 3.3.0] |