Page 1 of 1
How can i have some items selected when i choose none from drop down menu
#1
Posted 31 July 2006 - 04:39 AM
I always need to have two items selected for installation, so is it possible that they can stay always selected even when i change the default installation selection to none. Regards
#3
Posted 31 July 2006 - 05:18 AM
Hmmm,I think that i made this long time ago. The syntax is forc[pn]=['yes'], is it OK? I just cut off my config so i left only the 2 items which I need to be selected always and a dummy one (MS office). Here it is the config.
Attached File(s)
-
config.js (2.4K)
Number of downloads: 26
#5
Posted 31 July 2006 - 06:14 AM
#6
Posted 31 July 2006 - 06:29 AM
As long as you have selected force installation on exit in the menu it will install them, it may not show them checked but it will install them...
#7
Posted 31 July 2006 - 06:42 AM
It's just exiting... very strange indeed
Just tried mritter's config (there are 2 forced installations there) and when i select none and press install there is no installation windows. Now i don't know what to think...
Just tried mritter's config (there are 2 forced installations there) and when i select none and press install there is no installation windows. Now i don't know what to think...
#9
Posted 31 July 2006 - 08:27 AM
#10
Posted 31 July 2006 - 03:47 PM
Please look at http://www.msfn.org/...showtopic=80015 for updated enhancement
Ok. This was really bothering me that it was unchecking the programs that were going to install by default anyway. In my opinion this is a bug, the user should not be able to uncheck an item that is going to install no matter what. So I made a fix that will not uncheck the programs that have the FORCE option set. Additionally, it will not uncheck the FORCED programs when Select None is clicked. This way the user KNOWS that these programs are going to be installed. This would also help out with the overall interface. Now there is no need for the Force installations on exit option, because the FORCED programs will never become unchecked. I hope this is useful. I haven't tested it extensively, so let me know if there are any problems. The two files changed are Check.js and Boxes.js. If you want to know what I changed let me know and I'll post the individual changes.
edit: Well actually the installation on exit is still useful so disregard that comment.
Changes:
In boxes.js modify lines 139 and 144 from the original 5.2 boxes.js file to:
In check.js make the following changes:
1. In the setUnchecked function add
in the else clause after
2. Add the following function:
Ok. This was really bothering me that it was unchecking the programs that were going to install by default anyway. In my opinion this is a bug, the user should not be able to uncheck an item that is going to install no matter what. So I made a fix that will not uncheck the programs that have the FORCE option set. Additionally, it will not uncheck the FORCED programs when Select None is clicked. This way the user KNOWS that these programs are going to be installed. This would also help out with the overall interface. Now there is no need for the Force installations on exit option, because the FORCED programs will never become unchecked. I hope this is useful. I haven't tested it extensively, so let me know if there are any problems. The two files changed are Check.js and Boxes.js. If you want to know what I changed let me know and I'll post the individual changes.
edit: Well actually the installation on exit is still useful so disregard that comment.
Changes:
In boxes.js modify lines 139 and 144 from the original 5.2 boxes.js file to:
txt += 'onclick="checkDeps(' + i + '); checkCategory(' + i + '); checkForce(' + i + ')"';
In check.js make the following changes:
1. In the setUnchecked function add
if (forc[i]!=null && forc[i]=='yes') return;
in the else clause after
if (elem==null) return;
2. Add the following function:
function checkForce(i)
{
position="check.js";
whatfunc="checkForce()";
var elem = document.getElementById("chkbox"+i);
if(forc[i]!=null && forc[i]=='yes')
elem.checked='yes';
}
This post has been edited by zorphnog: 03 August 2006 - 12:06 PM
Share this topic:
Page 1 of 1



Help
Back to top













