jQuery datepicker onSelect set multiple row values
Posted
by d3020
on Stack Overflow
See other posts from Stack Overflow
or by d3020
Published on 2010-04-21T00:14:25Z
Indexed on
2010/04/21
0:23 UTC
Read the original article
Hit count: 572
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.
© Stack Overflow or respective owner