[Zope3-Users] Needed help with zc.table selection column

2006-11-15 Thread Thierry Florac
Hi, I'm using zc.table to handle simple lists of items to replace the standard contents.html container view. I use a SelectionColumn and a set of sortable columns, to display a checkbox in front of every item, and a set of custom actions to handle my selections. My question is trivial : as

Re: [Zope3-Users] Needed help with zc.table selection column

2006-11-15 Thread Adam Groszer
Hello Thierry, Use something like this: sels = self.columns[0].getSelected(self.list_data, self.request) Then sels will contain your objects as a list. Wednesday, November 15, 2006, 12:17:46 PM, you wrote: TF Hi, TF I'm using zc.table to handle simple lists of items to replace the TF