Re: [Pharo-users] Setting rowHeight: for Spec FastTableModel

2017-06-22 Thread Esteban Lorenzano
> On 22 Jun 2017, at 17:49, Juraj Kubelka wrote: > > >> El 22-06-2017, a las 17:19, Ben Coman > > escribió: >> >> What considerations are there to have individual row heights? > > The way I understand FastTable, it is not possible to have each item with > differe

Re: [Pharo-users] Setting rowHeight: for Spec FastTableModel

2017-06-22 Thread Juraj Kubelka
> El 22-06-2017, a las 17:19, Ben Coman escribió: > > What considerations are there to have individual row heights? The way I understand FastTable, it is not possible to have each item with different height. Cheers, Juraj > i.e. How close are we to having a spreadsheet interface like simplf

Re: [Pharo-users] Setting rowHeight: for Spec FastTableModel

2017-06-22 Thread Ben Coman
What considerations are there to have individual row heights? i.e. How close are we to having a spreadsheet interface like simplfied Excel? cheers -ben On Thu, Jun 22, 2017 at 4:51 PM, Juraj Kubelka wrote: > Hi, > > I have a code like this: > > FastTableModel new > displayBlock: [ :node | node

Re: [Pharo-users] Setting rowHeight: for Spec FastTableModel

2017-06-22 Thread Stephan Eggermont
On 22/06/17 10:51, Juraj Kubelka wrote: Hi, I have a code like this: FastTableModel new displayBlock: [ :node | node name ]; items: Collection withAllSubclasses; openWithSpec. Which works fine. But I would like to define row height for each item. FTTableMorph has a method rowHeight:. Is it pos