Hi!
I really don't know if it's a DataGrid issue or a MemoDropDown issue.
I'm using a TAdvMemoDropDown as inplace editor. In GetInplaceEditorProperties I set the MemoDropDown AutoDrop := True. When I type something in a cell the Memo shows, drops the editor, but the cursor appears before that first character I typed.
How to fix it ?
Example ... if the user enter this cell and types "hello" ... the memo will be "elloh", as when he typed the "h" the memo appeared with the cursor before the "h".
This is what I have in GetInplaceEditorProperties:
Memo.ScrollBars := TScrollStyle.ssBoth;
DropDownHeader.Visible := False;
AutoDrop := True;
DropDownHeight := 300;
DropDownWidth := 400;
DropDownSizeable := True;
DropDownShadow := True;
Thanks.
UPDATE: It also happens when AutoDrop = False. If I type something without clicking on the cell and opening the MemoDropDown InplaceEditor first, the one-line editor appears with the cursor before this first typed character.