DataSetBuilder.st
changeset 3529 54d629e6e42c
parent 3515 4aad29709ec7
child 3534 39c8a672a8ab
equal deleted inserted replaced
3528:f697558c47cd 3529:54d629e6e42c
  4229         aspects do:[:anAspect| anAspect value:notifyValue ].
  4229         aspects do:[:anAspect| anAspect value:notifyValue ].
  4230         aspects keysAndValuesDo:[:aKey :aModel |
  4230         aspects keysAndValuesDo:[:aKey :aModel |
  4231             aModel value:(column perform:aKey) withoutNotifying: self
  4231             aModel value:(column perform:aKey) withoutNotifying: self
  4232         ].
  4232         ].
  4233 
  4233 
  4234 "/ REPALCE nil by empty string for specific inputFields without an adapter
  4234 "/ REPLACE nil by empty string for specific inputFields without an adapter
  4235         #( #labelActionArgument #formatString #id ) do:[:aKey| |model|
  4235         #( #labelActionArgument #formatString #id ) do:[:aKey| |model|
  4236             model := aspects at:aKey.
  4236             model := aspects at:aKey.
  4237             model value isNil ifTrue:[model value:notifyValue withoutNotifying: self]
  4237             model value isNil ifTrue:[model value:notifyValue withoutNotifying: self]
  4238         ].
  4238         ].
  4239 
  4239 
  4240         tabSelection == 0 ifTrue:[self tabModel value:1].
  4240         tabSelection == 0 ifTrue:[self tabModel value:1].
  4241     ].
  4241     ].
       
  4242 
       
  4243     "Modified (comment): / 24-01-2018 / 10:41:17 / mawalch"
  4242 ! !
  4244 ! !
  4243 
  4245 
  4244 !DataSetBuilder methodsFor:'selection'!
  4246 !DataSetBuilder methodsFor:'selection'!
  4245 
  4247 
  4246 selectedColumn
  4248 selectedColumn