Re: [Pharo-dev] Two tables that share the same data source!?

2017-12-09 Thread Stephane Ducasse
Hi Elhamer where can we find the code of the improvements you did on FastTable? Stef On Tue, Aug 8, 2017 at 2:42 AM, Elhamer wrote: > Hi Alex and thank you for your reply :)) > > Good to know that bloc already supports that, I am definitely moving to work > on/with it after that :)) > > I've ne

Re: [Pharo-dev] Two tables that share the same data source!?

2017-08-07 Thread Elhamer
Hi Alex and thank you for your reply :)) Good to know that bloc already supports that, I am definitely moving to work on/with it after that :)) I've never encounter that scenario on a a Pharo package too, but since i was working on improving FTs, i thought why not!, besides, in apps with multiple

Re: [Pharo-dev] Two tables that share the same data source!?

2017-08-07 Thread Aliaksei Syrel
Hello Elhamer, Do you have an idea when it might be useful to have two lists representing the same datasource? We have this feature in bloc (see video in attachment) but I didn't encounter a real-life use-case yet... Cheers, Alex ​ Bloc-TwoListsOneDataSource.mov

[Pharo-dev] Two tables that share the same data source!?

2017-08-07 Thread Elhamer
Hello everybody, How common is it for multiple tables (FastTables) to have the same datasource ? The FTDataSource has a instance variable to refer a table: Object subclass: #FTDataSource instanceVariableNames: 'table' classVariableNames: '' package: 'Morphic-Widgets