I am using crud.update() as well. The next time I use crud.update() I have to restore the original settings for all field.writeable in table. Correct?
Regards, Andreas On Nov 4, 9:34 pm, mdipierro <[email protected]> wrote: > for field in table: field.writable=False > form = crud.update(table, id) > > On Nov 4, 3:28 pm, baloan <[email protected]> wrote: > > > Hello, > > > crud.delete(table, id) in 1.87.3 deletes the record right away. I'd > > like to implement a view of the record (as produced by > > crud.read(table, id) with a delete button in the bottom. > > > How would I implement this? > > > Regards, Andreas > > [email protected] > >

