Opened 10 years ago
Closed 10 years ago
#12066 closed enhancement (fixed)
Incomplete silverlight 2.0->dojox.gfx mouse event conversion
Reported by: | Katie Vance | Owned by: | Eugene Lazutkin |
---|---|---|---|
Priority: | high | Milestone: | 1.6 |
Component: | DojoX GFX | Version: | 1.5 |
Keywords: | Cc: | ||
Blocked By: | Blocking: |
Description
This enhancement is in regards to this thread: http://dojo-toolkit.33424.n3.nabble.com/gfx-incomplete-silverlight-mouse-events-fix-td1834557.html
Patch from Patrick (IBM, CCLA) to follow.
Attachments (1)
Change History (4)
Changed 10 years ago by
Attachment: | 12066.patch added |
---|
comment:1 Changed 10 years ago by
Milestone: | tbd → 1.6 |
---|---|
Status: | new → assigned |
comment:2 Changed 10 years ago by
In addition to mouse event target, the event target fix should also apply to keyboard event. That is, keyFix should be something like:
var keyFix = function(s, a) { var ev = { keyCode: a.platformKeyCode, ctrlKey: a.ctrl, shiftKey: a.shift }; // BEGIN PATCH if (a.source) // source is defined from Silverlight 2+ ev.target = a.source; // END PATCH return ev; };
comment:3 Changed 10 years ago by
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
Note: See
TracTickets for help on using
tickets.
patch from Patrick (IBM, CCLA)