User check list


Recommended Posts

What is the best way to create a "check list" for an end user? The idea being that the page will display a list of things to do that the user must "check" each one before a button on the bottom of the list will be activated to perform some function. For instance: 1. Usb plugged in [x] 2. Power on [x] 3. I have a brain [x] [RUN DIAGNOSTIC]

Thanks!

Link to comment
Share on other sites

Well then there are lots of choices, and the best solution depends on the look you want and how clean you want the programming. The cleanest way is probably to use a checkbox in array mode, and then put labels on it. In array mode, the checkboxes displayed will update an array, so you can then simply look for the min() of that array and if its not 0, then all the checkboxes are checked.

Otherwise, you can use a variety of controls to make what you want, but its slightly more cumbersome to setup.

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.