Forum OpenACS Development: callback question

Collapse
Posted by Claudio Pasolini on
Could someone point me to working examples of how to extend forms and lists via callback?
Collapse
2: Re: callback question (response to 1)
Posted by Malte Sussdorff on
contacts/www/contact-add.tcl

implementation in project manager. This is only for the forms.

For listbuilder I don't know off hand, but it seriously depends on what you would like to do. If you are interested in extending the elements, then you need to have a callback which sets the elements, the element_extensions. Additionally another callback needs to be provided within the db_foreach to set the appropriate values.

Collapse
3: Re: callback question (response to 1)
Posted by Claudio Pasolini on
Thank you very much, Malte.