So I was advised to change the BindingUpdateMode to "OnValidation". Now when I add a new record, type in a description like above, the description is NOT saved and is blank in the database and is displayed as blank on the UI form!
What gives?
Ben
Me.fld_Description = Me.fld_Description.Trim()
We can add this to the "to-look-at" list, but I make no guarentees that this will change until a future release of .NET.
You are correct. I cannot type something like "Police Officer" because the BO keeps trimming the space much like setting it up via the Business Object Mapper.
So what do you suggest? Here is what I want:
User types "Police Man " (trailing spaces)
We automatically trim the field to "Police Man"
Ideas?