The slider element blocks all keyboard inputs if it's focused, even with the safe argument passed to false in the addAccel method, like in the following code :
var slider = new photonui.Slider({
fieldVisible: true,
min: 0, max: 100,
step: 10,
value: 50
});
photonui.domInsert(slider, "demo");
var label = new photonui.Label({text: ""});
photonui.domInsert(label, "demo");
var accel = new photonui.AccelManager();
accel.addAccel("accel3", "ctrl + q", function() {
label.text += "'Ctrl + Q' accelerator\n";
}, false);
The slider element blocks all keyboard inputs if it's focused, even with the safe argument passed to false in the addAccel method, like in the following code :