ComboListView.st
changeset 184 13a2f3677c68
parent 181 31e8f8ab2fb8
child 215 28541bca7791
equal deleted inserted replaced
183:c63a4f284a6d 184:13a2f3677c68
    51 
    51 
    52      b list:#('hello' 'world' 'this' 'is' 'st/x').
    52      b list:#('hello' 'world' 'this' 'is' 'st/x').
    53      b model:model.
    53      b model:model.
    54 
    54 
    55      top openModal.
    55      top openModal.
    56      Transcript showCr:('comboBox''s value: ' , model value).
    56      Transcript showCR:('comboBox''s value: ' , model value).
    57                                                                 [exEnd]
    57                                                                 [exEnd]
    58 
    58 
    59 
    59 
    60   in a dialog:
    60   in a dialog:
    61                                                                 [exBegin]
    61                                                                 [exBegin]
    78 
    78 
    79      dialog addOkButton.
    79      dialog addOkButton.
    80 
    80 
    81      dialog open.
    81      dialog open.
    82 
    82 
    83      Transcript showCr:('1st comboBox''s value: ' , model1 value).
    83      Transcript showCR:('1st comboBox''s value: ' , model1 value).
    84      Transcript showCr:('2nd comboBox''s value: ' , model2 value).
    84      Transcript showCR:('2nd comboBox''s value: ' , model2 value).
    85                                                                 [exEnd]
    85                                                                 [exEnd]
    86 "
    86 "
    87 ! !
    87 ! !
    88 
    88 
    89 !ComboListView methodsFor:'accessing-components'!
    89 !ComboListView methodsFor:'accessing-components'!
   128 ! !
   128 ! !
   129 
   129 
   130 !ComboListView class methodsFor:'documentation'!
   130 !ComboListView class methodsFor:'documentation'!
   131 
   131 
   132 version
   132 version
   133     ^ '$Header: /cvs/stx/stx/libwidg2/ComboListView.st,v 1.2 1996-05-14 11:09:30 cg Exp $'
   133     ^ '$Header: /cvs/stx/stx/libwidg2/ComboListView.st,v 1.3 1996-05-18 15:43:16 cg Exp $'
   134 ! !
   134 ! !