Thank you Denes. I understood and this works fine at shell.
At web-application, I use the below code,
form = crud.create(db.entries,
next = URL('index'))
This gets me a simple text field for the 'list:string' field and whatever I
enter gets in as,
'one,two,three'
I tried to enter ['one','two','three'] and it gets in as a single string.
so I'm still on zero.
Can someone tell me how to handle (ie. whatever is entered gets in as
individual strings and not as a single string) from the web-app.
One option I can think of is to create a pain the form with individual
fields and then process the form submission. But I hope I could handle this
with crud, since it is so easy.
Thank you,
Joseph