TTMSLiveGrid - Show Editor of a cell permanent

Hello, is it possible to show the Editor of a cell permanent and not only I have tapped on the item?

Best wishes
Bernhard Roos

Hi,

There is are settings that allows you to direct edit a cell when entering, tabbing or clicking a cell:

TMSFMXLiveGrid1.Options.Mouse.DirectEdit := True;
TMSFMXLiveGrid1.Options.Keyboard.TabKeyDirectEdit := True;
TMSFMXLiveGrid1.Options.Keyboard.EnterKeyDirectEdit := True;

Additionally, you can start an edit operation with TMSFMXLiveGrid1.EditCell(...). There is no real permanent editor cell but with these settings you can mimic this behavior. Please note that the editor will still close when you are pressing enter on the cell itself, because the value of the cell is only updated when the editor closes.