I wanted the data entry of a list type field as a plain text box with comma separated data values. Thus, in my model,I defined the field as:
Field('fld', 'list:integer', widget=SQLFORM.widgets.string.widget) Using a crud.create form, what extra steps should I do to be able to save a value such as '10,8,2' as a proper list data in the database?