jQuery datepicker onSelect set multiple row values
- by d3020
On the select event of the datepicker I need to add and set values in multiple rows. In other words, I have something like this...
Days Value
Row 1 1
Row 2 2
Row 3 3
I have the "Days" and "Value" columns as textboxes. When I select a date from the datepicker I need to add the "Days" value for each row to the date selected. That value is what goes into the "Value" column. Example, I select 4/20/2010. The value in each respective row would then be 4/21/2010, 4/22/2010, 4/23/2010.
Hopefully this makes sense and thank you for the help in advance.