We take pride in your success. We let our positivity drive us, day in and out. Talk to us at Mindfire to know us more.

Software Technology Tips

WebNumericEditor is one of the Infragistics Editor controls.
Now, WebNumericEditor control will use a comma to separate number groups
 
For example 1234567 will be displayed as 1,234,567
 
But if you want to prevent 1234567 being displayed as 1,234,567
Here's the C# code :-
  
//Requires: using System.Globalization;
 
 
CultureInfo ci = new CultureInfo("en-US");
NumberFormatInfo nfi = new NumberFormatInfo();
nfi.NumberGroupSeparator = string.Empty;
ci.NumberFormat = nfi;
this.WebNumericEditor1.Culture = ci;


Related Tags:

Infragistics, WebNumericEditor, C Sharp

Author: Palash Mondal

top

C#

Let us Connect!

privacy

copyright (c) Mindfire Solutions 2007-2012. Login