This repository was archived by the owner on Aug 31, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed
Toolset/palettes/revdatagridlibrary Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -198,10 +198,10 @@ on mouseUp
198198 if the long id of the target contains the long id of sSwipeControl then
199199 switch sSwipeControlSide
200200 case "left"
201- dispatch DG2_GetMessageNameForTag("RowLeftSwipeControlClicked" ) to tRowControl
201+ dispatch DG2_GetMessageNameForTag("RowLeftSwipeControlClicked" ) to tRowControl with the target
202202 break
203203 case "right"
204- dispatch DG2_GetMessageNameForTag("RowRightSwipeControlClicked" ) to tRowControl
204+ dispatch DG2_GetMessageNameForTag("RowRightSwipeControlClicked" ) to tRowControl with the target
205205 break
206206 end switch
207207 else
Original file line number Diff line number Diff line change @@ -9987,11 +9987,11 @@ end EditModeHideActionControl
99879987-- These messages are handled at this point of the message path to allow
99889988-- users to potentially handle them at group level.
99899989
9990- on RowLeftSwipeControlClicked
9990+ on RowLeftSwipeControlClicked pTarget
99919991 DeleteIndex the dgIndex of the target
99929992end RowLeftSwipeControlClicked
99939993
9994- on RowRightSwipeControlClicked
9994+ on RowRightSwipeControlClicked pTarget
99959995 DeleteIndex the dgIndex of the target
99969996end RowRightSwipeControlClicked
99979997
Original file line number Diff line number Diff line change 1+ # Ensure RowLeftSwipeControlClicked message is sent with a target parameter
You can’t perform that action at this time.
0 commit comments