DBAdvGrid - MemoEditLink - Scroll

Hi.

I need to scroll inside a Memoeditlink. If i set EditStyle to esInplace and Scroll the Editor closes.
If if set EditStyle to esPopup then i can scroll in the Field but it stays open when i move the mouse outsite of the Editlink and scroll.

Is there an event or an option to close a MemoEditlink when scrolling in a DBAdvGrid?
Or is it possible to use EditStyle = esInplace and scroll inside the Field?


Not 100% sure I fully understand. I assume the scroll happens at grid level? If so, the grid.On.TopLeftChanged event is triggered. To close an editor, you could from there call grid.HideInplaceEdit;

OnTopLeftChanged is not fired if you only have few Records.

Your question was: "Is there an event or an option to close a MemoEditlink when scrolling in a DBAdvGrid?"

When you have only a few records, I obviously assume you cannot scroll in the grid.
So, what is your specific issue then in this case?

Sorry. I mean change the record with the mousewheel.

That should trigger the OnSelectionChanged event

Ok this is a temporary solution. But is it wanted like that?
Your AdvStringGrid Demo ASG24 has the same "issue".

Put some text in the memo column of your demo. Then use the mousewheel on the grid (beside the memo field) and exit this cell. The entered text does not belong to the "entered cell"

We applied an improvement at grid level that will be included in the next release.

Ok thanks.