Re: [Pyobjc-dev] status of enumerators?
Brought to you by:
ronaldoussoren
From: <bo...@pa...> - 2003-02-27 17:32:04
|
fyi, this is the work-around: def addToABAction_(self, sender): print "addToABAction" selectedRows = self.theTableView.selectedRowEnumerator().allObjects() for r in selectedRows: print "row " + r.stringValue() |