I've set up a fiddle here https://jsfiddle.net/j49gz3g3
<div class="container">
<div class="row">
<div class="form-group">
<label for="dt">Birth Date</label>
<input type="text" name="dt" id="dt" placeholder="" class="nl-datepicker" />
</div>
</div>
</div>
While navigating between dates using the keyboard arrow keys, NVDA reads out
Friday, May 12 2016 row 3
Thursday, May 4 2016 column 5
whereas the expected output is
Friday, May 12 2016
Thursday, May 4 2016
Is there a way in which the reading out of the cell position (row 3, column 5) be avoided? Or is this a standard behavior with tables involving data?
This is happening in all major browsers (viz IE, FF, Chrome)
PS: Also attached a screenshot for reference.