Hi!
Using a fncdatagrid (VCL) with enterkeyhandling gekhNextColumn.
in Getinplaceeditorproperties I have:
if AInplaceEditor is TTMSFNCDataGridComboEdit then begin
TTMSFNCDataGridComboEdit(AInplaceEditor).AutoComplete := True;
TTMSFNCDataGridComboEdit(AInplaceEditor).AutoCloseUp := True;
TTMSFNCDataGridComboEdit(AInplaceEditor).AutoDropDown := False;
TTMSFNCDataGridComboEdit(AInplaceEditor).DropDownCount := 10;
TTMSFNCDataGridComboEdit(AInplaceEditor).AutoDropDownWidth := True;
Issue #1: when selecting a combo item using keyboard (ENTER), I must press ENTER again to leave the cell. First ENTER selects and drops up, second ENTER leaves the cell. Is there a way to make it leave the cell without having to write OnKeyUp or similar event?
Issue #2: Before I had AutoDropDown := True; but this way when selecting a combo item using keyboard (ENTER), it seems that the item is selected, but the combo drops down again.
Issue #3: Also when I had AutoDropDown := True; , sometimes after the grid navigation automatically focused on one of these cells, the mouse cursor became invisible while hovering the parent Form. It became visible again after selecting one of the combo items, or closing the combo.
Thanks !