I have a Web Text Editor in a template that has a maxlength and wondering if there is a way that I can return the characters remaining back to the user as they type?
Thanks,
Hello mnmjones,there is no built-in functionality, you have to make it by yourself. Try to implement it with javascript. Look at this sample, it has almost the same functionality: http://samples.infragistics.com/2010.3/WebFeatureBrowser/contents.aspx?showCode=true&t=WebEditors/WebTextEditor_Basic.aspx~srcview.aspx?path=~srcview.aspx?path=WebEditors/WebTextEditor_Basic.src
Thanks Hristo, I did look at that last week but if I am correct, it only gives me the location of the cursor. What I can't figure out is how to get the count of characters in the control. Other than that, I will be able to use the same functionality that the sample is offering.