Hi, when using the ‘clear’ in the number pad. How can I keep the pad open after clearing? Currently when you clear the input value using the ‘clear’ button, it closes the number pad.
Hi Todd,
You can do that using a custom button and the setVal method call, e.g.:
buttons: ['set', {
text: 'Clear',
handler: function (ev, inst) {
inst.setVal(null, false, false, true);
}
}, 'cancel']
thank you. Appreciated the note.