I would like to set up my XamNumericEditor with a ValueType = System:Int32
I would like to restrict the length to 3 numbers. How would I do this?
XamNumericEditor.MaxLength = 3
I had already tried that. That does not work.
Hi gmcalab,
If you set ValueType="System:Int32" Minimum="-999" Maximum="999" - this will guarantee that user will be able to enter only the numbers between (-999, 999)
Regards,
Tania
Is there a way to hide the thousands seperator if I were to make the maximum of 9999? I am trying to use this so the user can enter a year....
ultraNumericEditor1.FormatString = "####";
That would probably work if that property existed for the Silverlight Control, but it doesn't look like it does....
Oooops! sorry my bad.. i thought i was in the windows forms forums :)
anyway check this post that have the same issue
http://forums.infragistics.com/forums/p/41240/229689.aspx#229689
hope this helps