DataSetColumn.st
changeset 5673 d118ff306e7d
parent 5640 abd92bfe3252
child 5839 c97a4a9153f2
equal deleted inserted replaced
5672:f54387a10583 5673:d118ff306e7d
   171 
   171 
   172     |app key|
   172     |app key|
   173 
   173 
   174     ((key := description activeHelpKey) notEmptyOrNil 
   174     ((key := description activeHelpKey) notEmptyOrNil 
   175     and:[(app := dataSet application) notNil]) ifTrue:[
   175     and:[(app := dataSet application) notNil]) ifTrue:[
   176         ^ app flyByHelpTextForKey:key asSymbol.
   176         ^ app helpTextForKey:key asSymbol.
   177     ].
   177     ].
   178     ^ nil
   178     ^ nil
   179 
   179 
   180     "Created: / 26-03-2007 / 13:39:11 / cg"
   180     "Created: / 26-03-2007 / 13:39:11 / cg"
   181     "Modified: / 26-03-2007 / 17:51:15 / cg"
   181     "Modified: / 26-03-2007 / 17:51:15 / cg"
   186 
   186 
   187     |app key|
   187     |app key|
   188 
   188 
   189     ((key := description activeHelpKeyForLabel) notEmptyOrNil 
   189     ((key := description activeHelpKeyForLabel) notEmptyOrNil 
   190     and:[(app := dataSet application) notNil]) ifTrue:[
   190     and:[(app := dataSet application) notNil]) ifTrue:[
   191         ^ app flyByHelpTextForKey:key asSymbol.
   191         ^ app helpTextForKey:key asSymbol.
   192     ].
   192     ].
   193     ^ nil
   193     ^ nil
   194 
   194 
   195     "Created: / 26-03-2007 / 13:39:11 / cg"
   195     "Created: / 26-03-2007 / 13:39:11 / cg"
   196     "Modified: / 26-03-2007 / 17:51:15 / cg"
   196     "Modified: / 26-03-2007 / 17:51:15 / cg"
   201 
   201 
   202     |app key|
   202     |app key|
   203 
   203 
   204     ((key := description activeHelpKey) notEmptyOrNil 
   204     ((key := description activeHelpKey) notEmptyOrNil 
   205     and:[(app := dataSet application) notNil]) ifTrue:[
   205     and:[(app := dataSet application) notNil]) ifTrue:[
   206         ^ app flyByHelpTextForKey:key asSymbol row:rowNr.
   206         ^ app helpTextForKey:key asSymbol row:rowNr.
   207     ].
   207     ].
   208     ^ nil
   208     ^ nil
   209 
   209 
   210     "Created: / 26-03-2007 / 13:39:11 / cg"
   210     "Created: / 26-03-2007 / 13:39:11 / cg"
   211     "Modified: / 26-03-2007 / 17:51:15 / cg"
   211     "Modified: / 26-03-2007 / 17:51:15 / cg"