Rank: Member Groups: Member
Joined: 1/6/2010 Posts: 12
|
Hi... Am using the below code
<eo:MaskedEdit runat="server" ID="txtCost" Width="75px"> <eo:MaskedEditSegment SegmentType="Number" MaxValue="999999999" MinValue="0" IsRequired="true"></eo:MaskedEditSegment> </eo:MaskedEdit>
1)How to remove the line display..?
2)How to set maxlength..?
3)How to block the user to type the number/Text when the textbox reach the max length..?
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
In order to remove the line "_", you will need to set the MaskedEdit's PromptChar property to space " ". You do not set MaxLength (nor need to block user from typing when reaching max length) because it is already implied in MaxValue.
Thanks!
|