The best solution to this is a widget to insert multi record of a
referenced table like:

db.define_table('post',
   Field('title'),
   Field('content'))

db.define_table('comment',
   Field('post_id', db.post),
   Field('author'),
   Field('email'),
   Field('body', 'text'))

What I need is a widget to insert multi records of comments on create
and update post form, this is a good solution to multi upload too.


On Dec 13, 5:22 pm, Bruno Rocha <[email protected]> wrote:
> I think it is possible with a custom field and a custom widget.
>
> But, if you need multi file upload there 
> is:http://web2pyslices.com/main/slices/take_slice/103
>
> 2010/12/13 Savio Sabino <[email protected]>
>
> > Have a mode to do this work? Or a other solution?
>
> --
>
> Bruno Rochahttp://about.me/rochacbruno/bio

Reply via email to