Page 1 of 1

TeeGrid with TComboBox Column and LiveBindings

Posted: Fri Feb 14, 2020 4:34 pm
by 16583407
Hello,
Is it possible to use your TeeGrid with a TComboBox Column and Livebinding? We tried different TGrids in our FMX project on android as target in Delphi 10.3.3. With grids from other vendors we have problems with TComboBox Column if we use LiveBindings.
We hope to use your very unsefull TeeGrid.


You’re sincerely

Willi Ebert

Re: TeeGrid with TComboBox Column and LiveBindings

Posted: Tue Feb 18, 2020 10:02 am
by Marc
Hello Willi,

I've run a test to check it. Similar to the project linked here:

Code: Select all

https://github.com/Steema/TeeGrid/tree/master/demos/FireMonkey/Cell%20Editors
Assigning the data to a ClientDataset, the combo to possible field values and another component on the form with LiveBindings, linked to that same field. I can confirm that modifying the field value in the grid, via the combo, updates correctly the other livebinding component on the form.

Regards,
Marc Meumann

Re: TeeGrid with TComboBox Column and LiveBindings

Posted: Tue Feb 18, 2020 3:03 pm
by 16583407
Hello Marc,
i use now FDMemTable insted of ClientDataSet. So far without any errors. But we have problems with the senility of the cell editing under Android.
We set:

TeeGrid1.Editing.DoubleClick := True;
TeeGrid1.Editing.AutoEdit:= True;
TeeGrid1.Editing.EnterKey:= NextRow;

But we have to make many "double-clicks" to enter the edit mode of one cell, and with enterkey nextrow the curser is still in the same row after editing.

You’re sincerely

Re: TeeGrid with TComboBox Column and LiveBindings

Posted: Fri Feb 21, 2020 4:29 pm
by Marc
Hello Willi,

Thanks for the feedback. We'll run some tests.

Regards,
Marc