Hi,
when using cxGridTableView with
DatamodeController.Smartrefresh = true and
DataController.KeyFieldNames = ''
- editing a record through build-in navigator is very slow (three seconds to post record in table with 78.000 records).
- inserting a record through build-in navigator inserts a record and shows the record in the TableView and is very slow (three seconds to post insert in table with 78.000 records).
when using cxGridTableView with
DatamodeController.Smartrefresh = true and
DataController.KeyFieldNames = 'ID'
- editing the table works fine (almost imediatly).
- inserting a record through build-in navigator inserts a record, but TableView does not show record. Even after Navigator.refresh inserted record is not shown.
Why?
Best Regards,
Dietrich
Hello Dietrich,
From what I gather, you are using the TcxGridDBTableView class, but not TcxGridTableView. TcxGridTableView is an unbound view and it does not have the DataModeController published property.
As stated in the "TcxDBDataModeController.SmartRefresh" help topic, the key field must be specified to make this mode work. Thus, when you set the DataController.KeyFieldNames property to an empty value, the SmartRefresh mode does not work in fact. That is why the update time is so big.
As for the built-in Navigator's behavior you described, I think that this should not happen in SmartRefresh mode. This Navigator is a part of the grid control, so it has access to the grid view's DataController instance and can individually update records. Moreover, I was not able to reproduce the behavior you described in a small sample project. It seems that something else is involved at your end. Would you please modify the attached project to demonstrate the problematic behavior? Thanks in advance.
Hi,
with your TdxMemData it works fine.
I use a simple table on SQL-Server (Ver. 12):
CREATE TABLE [dbo].[TEST]( [ID_KEY] [int] IDENTITY(0,1) NOT NULL, [Match] [varchar](250) NULL CONSTRAINT [DF_TEST_Match] DEFAULT ('-'), CONSTRAINT [PK_TEST] PRIMARY KEY CLUSTERED ( [ID_KEY] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]
Attached, you can find my sample-source where you can test the issue.
Thanks, Dietrich. I have reproduced this behavior with your sample project. This looks strange that the inserted row is created anyway (it appears after refresh). It seems that this is some kind of a FireDac specificity. In any case, I have forwarded this ticket to our developers for research.
It seems not to be a FireDAC problem. SDAC has the same behavior.
Also refresh doesn't work, only after close/open the inserted record is shown…
Hello Dietrich,
We are planning to overcome this behavior soon. Meanwhile, you can set the field's DefaultExpression option to Null as a workaround.