and yet another problem :)
now I have two custom browsers
b … andShow: [ :a |
a custom: self buildBrowserA.
a custom: self buildBrowserB ].
that show some tabs.. well, now, under certain conditions, I need the browser to start in the second tab, not the first… imagine a browser and a selection instance/class side, I want to open it in class side… but just if I’m showing a class side method :)
how to?
thanks,
Esteban
So you the browser to have an initial selection?
If yes you need to use initialized:
|browser |
browser := GLMTabulator new.
browser column: #one.
browser transmit to: #one; andShow: [ :a |
a tree
children: [:x :i | x asString size > 1 ifTrue: [x] ifFalse: [OrderedCollection new] ];
initialize: [ :tree | tree selection: #($e $f) ] ].
browser openOn: #(($a $b $c $d) ($e $f) ($g $h $i $j $l)).
Cheers,
Andrei
_______________________________________________
Moose-dev mailing list
Moose-dev@iam.unibe.chhttps://www.iam.unibe.ch/mailman/listinfo/moose-dev