Allow Blank Field Entry

Several of my database fields are defined to not allow a NULL value. Validation rules prevent users from leaving these fields blank. However, I’d like them to be able to be left blank and an empty string be inserted into the database upon submission.

Anyone have an example of how I would do this?

Thanks,

Carla

If you remove them from the required validator they will be allowed to be empty…

And you can use CDefaultValueValidator to give them a default value…