This is a migrated thread and some comments may be shown as answers.

RadNumericTextbox with DisplayMask

1 Answer 150 Views
Input
This is a migrated thread and some comments may be shown as answers.
Stalin
Top achievements
Rank 1
Stalin asked on 30 Jul 2013, 07:51 AM
Hi,

Is it possible to have bullet symbol as the DisplayMask setting value, so that the masking shows bullet "." symbol instead of masking special character ?

Right now am using "X" as the masking value, by setting RadNumericTextBox.DisplayMask = "XXXX". I tried putting ASCII name for bullet symbol but that didn't work.

Thanks,
Stalin

1 Answer, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 30 Jul 2013, 09:46 AM
Hi Stalin,

Please have a look into the sample code I tried to display a bullet mask which worked fine at my end.

C#:
//Setting four digit mask
RadMaskedTextBox1.Mask = "####";
//Setting the display mask as bullet symbol \u2022 is rendered as a bullet
RadMaskedTextBox1.DisplayMask = "\u2022\u2022\u2022\u2022";

Thanks,
Shinu.
Tags
Input
Asked by
Stalin
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Share this question
or