vote up 0 vote down star

I'm creating a simple composite control that has AJAX functionality. When trying to implement a MaskedEditValidator, the DisplayMoney property doesn't work. The MaskedEdit renders, without the dollar sign attached. Any ideas? Here's my code:

protected override void OnInit(EventArgs e)
{
    base.OnInit(e);
    priceTextbox.ID = this.ID + "_price";
    quantityTextbox.ID = this.ID + "_quantity";
    timeTextbox.ID = this.ID + "_time";
    submitButton.ID = this.ID + "_submit";
    submitButton.Text = "Submit";
    priceMask.TargetControlID = priceTextbox.ClientID.ToString();
    priceMask.ID = priceMask.TargetControlID.ToString() + "_extender";
    priceMask.BehaviorID = "priceMaskExtender";
    priceMask.Mask = "99.99";
    priceMask.DisplayMoney = MaskedEditShowSymbol.Left;

}
flag

Your both right, but I have to give it to colithium because he posted first. I love how every comes out when a bounty is applied. Thanks all. +1 – BBetances Feb 3 at 23:08

2 Answers

vote up 1 vote down check

Try adding the following line:

priceMask.MaskType = MaskedEditType.Number;

Optionally, set ClearMaskOnLostFocus to false if that is the behavior you want (it keeps the dollar sign even when not focused).

The DisplayMoney property setter only sets the property if MaskType is equal to MaskedEditType.Number.

set
{
   if (MaskType == MaskedEditType.Number)
   {
     SetPropertyValue("DisplayMoney", value);
   }
}
link|flag
vote up 1 vote down

The DisplayMoney property setter only sets the property if MaskType is equal to MaskedEditType.Number.

set
{
   if (MaskType == MaskedEditType.Number)
   {
     SetPropertyValue("DisplayMoney", value);
   }
}

So you need to set:

priceMask.MaskType = MaskedEditType.Number;
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.