[web2py] Re: form.custom('table')

2012-05-27 Thread Annet
I had to remove {{=form.custom.end[1]}} and change {{=form.custom.end[0]}} to {{=form.custom.end}} to solve the problem. Annet.

[web2py] Re: form.custom('table')

2012-05-26 Thread Annet
> What do you mean by does not work? > When I click the submit button, the form isn't being submitted. Kind regards, Annet.

[web2py] Re: form.custom('table')

2012-05-25 Thread Massimo Di Pierro
What do you mean by does not work? On Friday, 25 May 2012 13:22:10 UTC-5, Annet wrote: > > Massimo, > > Thanks for your reply, it solved the first part of the problem. I am left > with a submit button that doesn't work: > > In the view: > > {{=form.custom.submit}} > > In the browser: > > > > > D

[web2py] Re: form.custom('table')

2012-05-25 Thread Annet
Massimo, Thanks for your reply, it solved the first part of the problem. I am left with a submit button that doesn't work: In the view: {{=form.custom.submit}} In the browser: Do I have to add any code to get this to work? Kind regards, Annet

[web2py] Re: form.custom('table')

2012-05-25 Thread Massimo Di Pierro
replace {{=form.element('table')}} with {{ del form.element('table')[-1]}} {{=form.element('table')}} On Friday, 25 May 2012 01:01:27 UTC-5, Annet wrote: > > I made a little progress: > > > > > > {{=form.custom.begin}} > {{=form.element('table')}} > > > > {{=form.custom.end[1]}} > {{=form

[web2py] Re: form.custom('table')

2012-05-24 Thread Annet
I made a little progress: {{=form.custom.begin}} {{=form.element('table')}} {{=form.custom.end[1]}} {{=form.custom.submit}} {{=form.custom.end[0]}} The problem is that {{=form.element('table')}} also contains the submit and cancel button, and that the submit button in the form-footer do