Hello,
I have a TTIWDBAdvWebGrid connected to a datasource, which is connected to a TADOTable.
One field is "MyDate", so I have this column set to "edDatePicker" in Editor property.
I added one button for append records with onClick event:
this->ADOTable1->Append();
this->ADOTable1->FieldByName("MyDate")->Value = Now();
If user push button, a new record is showed and datapicker inplace editor runs ok.
But no date is showed in "MyDate" cell on new row.
It's possible to show default values when creates a new row ?
If a date value is specified in the datafield that is assigned to the MyDate column of the TTIWDBAdvWebGrid, this value should be displayed for the new row.