2

I have gridcontrol table and table in database.

I am able to display money data from database in gridcontrol (Display Format; "n0", custom)

I need to input special symbol "<" for which I want to create mask with RegEx value

"(\\<)? \\d+(\\.\\d\\d)?" (or something like this).

The issue is when I input "<1" it must displayed cell, but it except error (because display format is "n0").

My requirement is to see table with numeric values, but when I input "<1" to this cell, it must display "<1"

Summarizing: allow only numeric symbol and "<" sumbol to input and to display at cell

Ruchi
  • 1,238
  • 11
  • 32

1 Answers1

0

You can do this in this way,

By using Properties Window, set EditMask = (\<)\\?+[0-9]* and set MaskType = RegEx

enter image description here

NASSER
  • 5,900
  • 7
  • 38
  • 57