DataSetColumn.st
changeset 3448 ef7d76d6bcfd
parent 3364 b7f6e426cd60
child 3459 6d1feb9745b8
equal deleted inserted replaced
3447:14da53ff976c 3448:ef7d76d6bcfd
  1000     ].
  1000     ].
  1001     ^ false
  1001     ^ false
  1002 !
  1002 !
  1003 
  1003 
  1004 canSelect:aRowNr
  1004 canSelect:aRowNr
  1005     "returns true if the cell in column is selectable
  1005     "returns true if the cell in column is selectable.
  1006     "
  1006      (possibly calls the selectSelector, if any)"
       
  1007 
  1007     |s row|
  1008     |s row|
  1008 
  1009 
  1009     description canSelect ifFalse:[^ false].
  1010     description canSelect ifFalse:[^ false].
  1010     s := description selectSelector.
  1011     s := description selectSelector.
  1011     s isNil ifTrue:[^ true].
  1012     s isNil ifTrue:[^ true].
  1230 ! !
  1231 ! !
  1231 
  1232 
  1232 !DataSetColumn class methodsFor:'documentation'!
  1233 !DataSetColumn class methodsFor:'documentation'!
  1233 
  1234 
  1234 version
  1235 version
  1235     ^ '$Header: /cvs/stx/stx/libwidg2/DataSetColumn.st,v 1.115 2008-03-10 13:33:51 cg Exp $'
  1236     ^ '$Header: /cvs/stx/stx/libwidg2/DataSetColumn.st,v 1.116 2008-06-23 18:13:26 cg Exp $'
  1236 ! !
  1237 ! !