Hey all,
I need to allow users to choose/input authors associated with a given publication and there could be just a single author or (43 = the most I have seen so far) up to 40+. Needless to say creating a static form to collect the data will not do since there is no way to know ahead of time how many authors there are.
My original plan was to use a multi-select box that is pre-populated (dynamically) with a list of current employees that could potentially be authors. This is all fine and good EXCEPT for the fact that authors need to have an "order" associated with them so that they get proper credit for first author, second author, etc ... Given this little detail using a multi-select by itself will not work. I have thought about just doing something in which table rows are added dynamically but even with that approach the thought of a 40+ row table just for author input is somewhat nausiating.
Does anyone have any clever ideas on how to handle this?