You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've defined a new event in the plugin code: keydown. It works fine up to APEX 19 just by adding nodeEnter.on("keydown", function(d) { fireApexEvent("keydown", d); });
Alas the code stops recording the keypress event on Firefox and Safari (works on Chrome) from APEX 20.1 unless this new line is added:
var nodeEnter = node.enter() ... .attr("tabindex", "1") // this line is new ...
best Massimo
The text was updated successfully, but these errors were encountered:
I've defined a new event in the plugin code: keydown. It works fine up to APEX 19 just by adding
nodeEnter.on("keydown", function(d) { fireApexEvent("keydown", d); });
Alas the code stops recording the keypress event on Firefox and Safari (works on Chrome) from APEX 20.1 unless this new line is added:
var nodeEnter = node.enter() ... .attr("tabindex", "1") // this line is new ...
best Massimo
The text was updated successfully, but these errors were encountered: