DataSetColumn.st
changeset 3920 4a1933e73efd
parent 3869 20d5ddff9541
child 3990 a1ed686544e0
equal deleted inserted replaced
3919:2e2273c596d0 3920:4a1933e73efd
   860     ].
   860     ].
   861 
   861 
   862     type := description type.
   862     type := description type.
   863     type ~~ #string ifTrue:[
   863     type ~~ #string ifTrue:[
   864         converter := TypeConverter new perform:type.
   864         converter := TypeConverter new perform:type.
   865         converter model:value.
   865         ^ converter getBlock value:value.
   866         ^ converter value.
   866 "/ cg: the code below is dangerous (tries to addDependent to Integers) !!
       
   867 "/        converter model:value.
       
   868 "/        ^ converter value.
   867     ].
   869     ].
   868 
   870 
   869     ^ value
   871     ^ value
       
   872 
       
   873     "Modified: / 28-07-2010 / 20:42:51 / cg"
   870 ! !
   874 ! !
   871 
   875 
   872 !DataSetColumn methodsFor:'editing'!
   876 !DataSetColumn methodsFor:'editing'!
   873 
   877 
   874 editorAt:aRowNr
   878 editorAt:aRowNr
  1321 ! !
  1325 ! !
  1322 
  1326 
  1323 !DataSetColumn class methodsFor:'documentation'!
  1327 !DataSetColumn class methodsFor:'documentation'!
  1324 
  1328 
  1325 version
  1329 version
  1326     ^ '$Header: /cvs/stx/stx/libwidg2/DataSetColumn.st,v 1.131 2010-01-14 16:47:54 cg Exp $'
  1330     ^ '$Header: /cvs/stx/stx/libwidg2/DataSetColumn.st,v 1.132 2010-07-28 18:46:58 cg Exp $'
  1327 !
  1331 !
  1328 
  1332 
  1329 version_CVS
  1333 version_CVS
  1330     ^ '$Header: /cvs/stx/stx/libwidg2/DataSetColumn.st,v 1.131 2010-01-14 16:47:54 cg Exp $'
  1334     ^ '$Header: /cvs/stx/stx/libwidg2/DataSetColumn.st,v 1.132 2010-07-28 18:46:58 cg Exp $'
  1331 ! !
  1335 ! !