Topic: editable on script

Hi, exept the editable in the object inspector how can I use it on script ?

Re: editable on script

Hello.


Please download latest beta version
https://www.dropbox.com/s/xf20ksdbdgj6w … b.zip?dl=0


    Form1.TableGrid1.AllowCreate := True;
    Form1.TableGrid1.AllowCreateEmpty := True;
    Form1.TableGrid1.AllowDelete := True;

    Form1.TableGrid1.SecondClickEdit := True;


But to enable Edit records, you should also call method dbUpdate

    Form1.TableGrid1.AllowEdit := True;
    Form1.TableGrid1.dbUpdate;
Dmitry.

Re: editable on script

Thank you for helping us