I have a table/grid system with a 7 days along the top and the various types of data down the side, now for each type of data against a particular day there's a plus and minus sign so the user can increase or decrease the data occurrences. Now given that there's plenty of data types as well as 7 (for each day) values for each type, what's the best way to do it in everyone's opinion? I'm dubious about ajax as each plus and minus click would call a db operation, but the only other alternative (please correct me if I'm wrong) is that i dynamically update the values of a form and then force the user to "submit" once they've submitted all the info they need - but this is a lot of form values to process?
Cheers,