I have a few instances of checkbox groups I use for multi-value fields, e.g.:
Cooking method:
[ ] gas
[ ] electric
[ ] charcoal
[ ] wood
Several of which can be selected. These get loaded into a varchar(x) field. Works perfect.
However, I can't set default values. If I attempt:
[cooking_method]
Default = gas
*All* of the values are selected, not just gas. If I attempt the same in MySQL or in the DelegateClass, same story.
I am contemplating complex select lists to work around this as I have a premium on data entry speed, and defaults help a lot with this.
Also, on a related note, is there no way to layout the checkboxes in-line as opposed to vertical? Rather, an easy way? I have no skills with HTML nor CSS, but can hack away with some direction.