How to get the length of textbox?
For example :
<dx:ASPxTextBox ID="textbox_ID" runat="server" Height="16px" Width="83px" ClientInstanceName="textbox_ID" AutoPostBack="false"> <ClientSideEvents LostFocus="function(s,e){ if(textbox_ID.GetText().Length==3){ alert(textbox_ID.GetText()); } }" /> </dx:ASPxTextBox> Thank you.