Hello team,
I am facing one issue. So, my grid has 6-7 columns some r custom text/combobox and some are normal textbox. So I need to validate length. What is happening is validation is working but if minimum is 4 and if i type a and give 3 spaces it is not giving validation it's counting space?. How to fix it.
In the x03bet game text validation, spaces are currently being counted as characters, causing incorrect length checks. To resolve this, use .Trim() or a regex to remove leading and trailing spaces before validation. This ensures accurate input length validation and prevents users from bypassing the minimum length rule.
.Trim()