the enclosed dynamic form has buttons with access keys defined. They work well in Internet Explorer. Pressing alt and a,d,s and after that Enter leads to the alert.
But this does not work in Firefox. Pressing alt+shift and a,d,s and after that Enter has no reaction.
Any idea what I have done wrong?
Regards Thomas
But this does not work in Firefox. Pressing alt+shift and a,d,s and after that Enter has no reaction.
Any idea what I have done wrong?
Regards Thomas
Code:
isc.DynamicForm.create( { ID:"receiptForm_1", height:400, width:500, fields: [ { type:"toolbar", buttons: [ { type:"button", click:function (parameter1, parameter2) {alert("add") }, accessKey:"a", title:"Add" }, { accessKey:"d", type:"button", click:function (parameter1, parameter2) {alert("delete") }, ID:"deleteButton_1", title:"Delete" }, { accessKey:"s", type:"button", click:function (parameter1, parameter2) {alert("delete") }, ID:"saveButton_1", title:"Save" } ] } ] } );
Comment