I am working with datagridview control. I want to validate dataGridView to allow the value in money format in datagridview textbox cell like 123.00,123.50.
That should take numeric values and one . value.
|
|
||||
|
|
|
The way that I have used in the past (and the only way that I know how to do it) is to create classes that inherit from DataGridViewTextBoxColumn and DataGridViewTextBoxCell, and use the derived class instead of DataGridViewTextBoxColumn as the ColumnType when creating the grid. This link has an example of how to do it in VB. I can't post my C# code as it was developed by a company I used to work for, but the VB code is basically the same. |
|||
|
|
|
You need
Here is the code:- aspx file
Code Behind i.e. aspx.cs file
I have tried this code in my project and it is working properly. The main code here is the Regular Expression:
where
|
|||
|
|
|
Since it seems like you want to validate user input in real time, I think the best and the effective way to go about it is creating a custom column type hosting a |
|||
|
|

