|
Rank: Advanced Member Groups: Member
Joined: 10/14/2010 Posts: 19
|
I have 4 masked edit columns on a grid. I then add Decimals="2" and save my page.
If I go back into the Edit columns, make a change, all the Decimals="2" are dropped off of the masked edit.
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
We have confirmed this to be a bug. We will fix it in our next build. In the mean time you may want to add the property manually in .aspx.
Thanks!
|
|
Rank: Member Groups: Member
Joined: 12/28/2010 Posts: 10
|
How do you do this manually in .aspx. ??
I'm having the same issue.
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
This should have been fixed a long time ago. You can try to download the latest version from our download page and see if that works for you.
To manually do it in .aspx, you just go there type in Decimals="2" for your MaskedEditSegment.
Thanks!
|
|
Rank: Member Groups: Member
Joined: 12/28/2010 Posts: 10
|
Not sure where to put it. I have this
<eo:TextBoxColumn ClientSideEndEdit="colAmountEndEdit" DataField="fmt_amount" DataType="Float" HeaderText="Amount *" Name="amount"> </eo:TextBoxColumn>
I don't see a Decimals option
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
It's not a TextBoxColumn. It's a MaskedEditColumn. It will be something like this:
<eo:MaskedEditColumn> <MaskedEdit ControlSkinID="None"> <eo:MaskedEditSegment Decimals="2" ..... /> </MaskedEdit> </eo:MaskedEditColumn>
Thanks
|
|