If you do not want to display the comma in the Infragistcs WebNumberic Edit control.
//WebNumericEdit control will use a comma to seperate number groups
//This will prevent 1234567 being displayed as 1,234,567
//Requires: using System.Globalization;
NumberFormatInfo numInfo = new NumberFormatInfo();
numInfo.NumberGroupSeparator = “”;
this.txt_Pfizer_id.NumberFormat = numInfo;
Hey Connor,
How’s tricks? Nice blog you’ve got here, looks like you haven’t updated it in a while but some interesting articles on it at any rate! How’s everything in DC? I’ve started working as a software developer in Cork, doing mostly Oracle stuff. Will probably head over to the states next summer, likely the west coast though! Any mad trips to Boston lately?
Take it easy,
Joe.
Thanks Connor. This worked great!
For anyone who tries this code and it does not work, put it in the PreRender event of the control.
Can someone show me how to do this using VB.Net. How do I incorporate this into my code-behind. I’m new to Web development and not sure how to implement this. I’m using an Infragistics UltraWebGrid control that uses the “webnumericedit” control. I have a column that allows for a 4 digit year but it’s sticking a comma in the value.