Knowledgebase Home Page  >  RapidSpell Web ASP.NET  >  Rich/HTML Textboxes
Search the Knowledge Base
How do I use RapidSpellWInline / RapidSpellWebLauncher as a Validator for a 3rd party textbox?
https://keyoti.com/kb/Default.aspx?ToDo=view&questId=141&catId=56

Options

Print this page
Email this to a friend
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]

Related Questions:

Attachments:

No attachments were found.