Edit
Bug correction Enable All Gadgets in function Clone Entry
CODE
function CloneEntry()
{
position="configwizard.js";
whatfunc="CloneEntry()";
...
FillInConfig(true,cpos);
ToggleAllGadgets(false);
if (SortWithinCats)
NextEntry();
else
LastEntry();
document.getElementById("prog").focus();
}
{
position="configwizard.js";
whatfunc="CloneEntry()";
...
FillInConfig(true,cpos);
ToggleAllGadgets(false);
if (SortWithinCats)
NextEntry();
else
LastEntry();
document.getElementById("prog").focus();
}
Hello,
When you add a new application, most of the options are disabled except "ComboBoxes".
By example, if you select an item in Condition Box the TextBox is updated but this statement :
CODE
document.getElementById(gad).focus();
in the HandleConditionsSelection's function
report
QUOTE
Javascript Error : "Can"t activate control..."
Ok, the TextBox is disabled and can't receive focus.
It's same for some other Combos like Command
To avoid this error, I made a patch which calls a function disabling all ComboBox in function ToggleAllGadgets(state)
Code for ToggleAllGadgets(state)
CODE
function ToggleAllGadgets(state)
{
position="configwizard.js";
whatfunc="ToggleAllGadgets()";
ToggleUSSFs(state);
...
TogglePictureGadgets();
ToggleDefaultImages(state);
ToggleComboBox(state) // new function here
}
{
position="configwizard.js";
whatfunc="ToggleAllGadgets()";
ToggleUSSFs(state);
...
TogglePictureGadgets();
ToggleDefaultImages(state);
ToggleComboBox(state) // new function here
}
And the function ToggleComboBox (lines 347 to 362 of attached file)
In hope that this little work can help you
Regards
CODE
position="configwizard.js";
whatfunc="ToggleComboBox()";
whatfunc="ToggleComboBox()";
!Removed Click to view attachment