Hello,

Is there a way to set a default selection to a list presentation? so that when I open the browser, the morphic list has already a value selected.
I tried that:

  |tmpBrowser|
  tmpBrowser := GLMTabulator new.
  tmpBrowser row: #list.
  tmpBrowser transmit to: #list; andShow: [:a |
a list
display: [:input | input];
selection: #a;
yourself
].
tmpBrowser openOn: #( b c d v a d f r).


but the list still open with nothing selected