In my grid I have cells formatted as edComboList, edFloatSpinEdit, and edCheckBox. When I click on a ComboList cell, I would like it to automatically drop down. My issue is that if I have previously clicked in a SpinEdit cell and then click in the ComboList cell, my grid does a double drop down.
I have experimented with grid properties, and am confident that I am missing something.
I have the following settings,
myGrid.MouseActions.DirectEdit := True;
myGrid.MouseActions.DirectComboDrop := False;
myGrid.Navigation.AlwaysEdit := True;
myGrid.Navigation.AutoComboSelect := False;
myGrid.ControlLook.DropDownAlwaysVisible := True;
If I turn off DirectEdit, the double drop stops, but then I have to click twice in the SpinEdit to edit the value.
If I turn off DropDownAlwaysVisible, the double drop stops, but then I have to click twice in the ComboList cell to edit that value. Changing AlwaysEdit to false does not seem to change the behavior.
I am using RAD Studio 10.4 with the latest service packs. I am current with the VCL components as of 8/6/2020.
Thank you for any suggestion.