I am building a calander for a training schedule, and have a situation where a class might have more than one session within a given period.
The table I am building shows the availible classes down the left, and the months of the year across the top. The grid would then be populated with instances each month where the class takes place.
This is simple enough to do when a class only appears once within a month, but what happens if there are more than one? I want to avoid something like the following:
class: jan: feb: mar:
class1: : feb 2: :
class2: jan 7: : mar 3:
class2: jan 8: : :
In this example, I would want to have the january cell for class2 be split into two cells, but the rest of them be a single cell. I would then need to calculate the number of rows per class, and then have the code change to reflect that, but I am not sure how that would work.
Does anyone have an example of this?
If I havent been clear, and example of this in static code can be found at: http://www.firsttech.com/ftweb/trai.../content2.shtml
Thanks in advance