What I would like to accomplish with the code above is to do three things.
One is to list all the courses that are available to employees based on their positions.
Eg, a supervisor might have 15 courses available to him/her.
Of these 15 courses, some will be required of him/her to take and some will be optional.
I need one checkbox that when checked, means that the course is required. If the course is not required, this checkbox will be left blank.
On the same issue, if this course is required, is it taken by the employee concerned, if yes, again, there will be a checkbox checked. If not checked, the checkbox will be left blank.
Then there will be a textarea that says if this required class is not taken, write an explanation in the text area.
So we have a field called courseDesc, a name for the course, courseType, this indicates whether the course is required or not, then a courseStatus that indicates whether not or not the course is taken.
Individual, I have a code that handles all of these.
My problem is to line them up in that they will look like this:
coursetype(Required or not) CourseStatus(Taken or not)
Course1 checkbox for required checkbox for taken
course2 same here same here
. same here same here
. same here same here
. same here same here
courseN same here same here
Your help is greatly appreciated
What I need to do is to list all the courses and then
One is to list all the courses that are available to employees based on their positions.
Eg, a supervisor might have 15 courses available to him/her.
Of these 15 courses, some will be required of him/her to take and some will be optional.
I need one checkbox that when checked, means that the course is required. If the course is not required, this checkbox will be left blank.
On the same issue, if this course is required, is it taken by the employee concerned, if yes, again, there will be a checkbox checked. If not checked, the checkbox will be left blank.
Then there will be a textarea that says if this required class is not taken, write an explanation in the text area.
So we have a field called courseDesc, a name for the course, courseType, this indicates whether the course is required or not, then a courseStatus that indicates whether not or not the course is taken.
Individual, I have a code that handles all of these.
My problem is to line them up in that they will look like this:
coursetype(Required or not) CourseStatus(Taken or not)
Course1 checkbox for required checkbox for taken
course2 same here same here
. same here same here
. same here same here
. same here same here
courseN same here same here
Your help is greatly appreciated
What I need to do is to list all the courses and then