<tr>
<th>Check/UnCheck</th>
<th>MYear</th>
<th>P Date</th>
<th>Q Date</th>
<th>B Date</th>
</tr>
<tr>
<td align="top">
<input type="checkbox" class="chkValues" id="ckbCheckAll" name="chkBox" type="checkbox" data-row="1" value="" size="50">
</td>
<td align="left">
<input class="inputText row1" type="text" name="mYear" id="mYear" value="2020">
</td>
<td>
<input class="date row1" id="pDate1" name="dob" type="date" value="2020-01-01" />
</td>
<td>
<input class="date row1" id="qDate1" name="dob" type="date" value="2020-01-01" />
</td>
<td>
<input class="date row1" id="bDate1" name="dob" type="date" value="2020-01-01" />
</td>
</tr>
<tr>
<td align="top">
<input type="checkbox" class="chkValues" id="ckbCheckAll" name="chkBox" type="checkbox" data-row="2" value="" size="50">
</td>
<td align="left">
<input class="inputText row2" type="text" name="mYear" id="mYear" value="2020">
</td>
<td>
<input class="date row2" id="pDate2" name="dob" type="date" value="2020-02-01" />
</td>
<td>
<input class="date row2" id="qDate2" name="dob" type="date" value="2020-02-01" />
</td>
<td>
<input class="date row2" id="bDate2" name="dob" type="date" value="2020-02-01" />
</td>
</tr>
</table>
jsp return a vector julian.This does not mean anything.
AJAX calls a JSP page (optionally with parameters)
The JSP page makes a call to the database to retrieve the data.
The JSP script sends the data back as a JSON string.
The AJAX callback receives the JSON return and populates the display.
[Assuming jQuery]
Open in new window
You have given us very little information so it is difficult to give code on how to display the the data on your page - you will need to tell us more about your page and how you want it updated before we can provide the code.