Hi, I’ve a boolean database field (tinyint(1)) wich allows nulls.
Then, I’ve something like this:
radio_button(‘server’,‘customer_has_login’,“NULL”)
radio_button(‘server’,‘customer_has_login’,true)
radio_button(‘server’,‘customer_has_login’,false)
The problem is with the 1st radio_button, it doesn’t store a null.
I’ve tried with no luck:
radio_button(‘server’,‘customer_has_login’,“nil”)
and
radio_button(‘server’,‘customer_has_login’,nil)
no way… any idea??? is possible??
Thanks.