Question : Fox 9                   Creating a pick list

I am now writing a solution to the following problem.  I can think of  a couple of ways of accomplishing this. Most always with your  help I find the best solution.

Each month we send out postcards to people. The number of cards to be mailed can range from 50 to 100 to 200 or some months 10.  

 Some people for one reason or another we dont want to mail a post card in the chosen month. Whereas in another month we will.

What I would like to create is a screen generated list of people to get a post card for any chosen month with a check box next to each name that when checked removes them from the mailing.  




What would be the best approach to creating this screen

Thank You
D

Answer : Fox 9                   Creating a pick list

you can set visibility through style

document.getElementById('idofelement').style.display("none"); //hide element
document.getElementById('idofelement').style.display(""); //display element

css display will make the element invisible and also hide it from the page so elements will shift as if the element you hid was gone from the page

document.getElementById('idofelement').style.visibility("hidden"); //hide element
document.getElementById('idofelement').style.visibility("visible"); //display element

css visibility will make the item invisible, but it will still hold it's place on the page

for example if you had 3 images, and you used css display property to hide the middle image, the third image would move to be next to the first image, as if there was no 2nd image there. If you used visibility to hide the middle image, then the middle image would disappear and it would look like there was an empty space the size of the middle picture between pictures 1 and 3
Random Solutions  
 
programming4us programming4us