The HandleCommandsSelectionMenu function doesn't check whether the command textbox is disabled before inserting the command text.
Fix
In configwizard.js below the line containing
whatfunc="HandleCommandsSelectionMenu()";
add
if (document.getElementById("cmd1").disabled)
Alert("",getText(txtMustAddCommand),"",3,-1,0,0);;
In lang_en.js below the line containing
txtDeleteCommandConfirm[lang] = ['Are you sure you want to delete this command?'];
add
txtMustAddCommand[lang] = ['You must add a command entry through the \'Add\' button before being able to perform this operation.'];
In globals_lang.js below the line containing
var txtDeleteCommandConfirm=[];
add
var txtMustAddCommand=[];
This post has been edited by Francesco: 18 May 2012 - 07:58 PM



Help

Back to top









