I have a call tracking system that I built in PHP and MySQL. Mgr of Development just told me to add a feature to it that I have no idea how to approach....
Say a developer has 40 calls assigned to him. He wants to be able to prioritize these calls by assigning them numbers 1 through 40. There will be only one #1, one #2, etc.
At first I thought I could display a form that lists all of the issues with a text box that would take a number. However, I'd have to dynamically accept and process an unknown number of text boxes. Plus, I don't want the user to be able to have 2 #1s.
Then I thought I could javascript the whole thing by adding the issues and brief desciption to a wide list box. I could have a move-up or move-down controls, then when satisfied, you could click SAVE. It would go through the rows in the list box and assign a priority number. Admittedly, I don't know how to do this.
Does anyone have any suggestions?
Thanks.
NOTE: I think this is ridiculous, but when management wants it, I have to do it.