Forum OpenACS Q&A: Re: list-builder and -bulk_actions url value

Collapse
Posted by Lars Pind on
Randy,

Sorry, that's not supported.

Look at /acs-templating/resources/lists/table.adp.

The way bulk actions works is that the list is wrapped in a form, with the checkboxes sitting in that form. When you click a bulk action, the ListBulkActionClick javascript proc is executed. This changes the 'action' attribute of the form and submits it.

So a good fix in list-builder would be non-trivial.

Possible work-around: Create a client-delete.tcl page, which simply redirects to client?op=delete... Repeat for other operations.

It's not terribly pretty, but a) it gets the job done, and b) it provides for clean upgradeability.

/Lars