Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
105
WebTextEditor TextMode="Password" NullText
posted

Is there a way to display the NullText of a WebTextEditor when the TextMode="Password", but keep the characters a user is typing masked?

I have the editor defined as such: <ig:WebTextEditor ID="PasswordWebTextEditor" runat="server" TextMode="Password" NullText="Enter Password">

I want the user to see the NullText value when the focus is not on the control. Currently the control displays "************" for the NullText. 

I tried changing the "type" of the editor through client focus event in a javascript function, but that did not work.

function PasswordWebTextEditor_Focus(sender, eventArgs) { sender.type = "password"; }

function PasswordWebTextEditor_Blur(sender, eventArgs) { sender.type = "text"; }

-sandor

Parents Reply Children
No Data