Dear all,
There's a bug in GroceryCrud where it would cut your ENUM/SET value if it contains a "(", eg. Lorem,Ipsum (Latin) will be rendered as Lorem,Ipsu.
I don't know how to push the fix, but it's very straight forward: in grocery_crud_model::get_field_types_basic_table, change:
$type = explode("(",$db_field_type->Type);
to:
$type = explode("(",$db_field_type->Type,2);
Hope this helps someone else :)
Julien