The following example URL will ignore the Start parameter and simply return the first entry in the view starting with ‘n’ and not the second one as it should:db.nsf/view?ReadViewEntries&StartKey=n&UntilKey=o&Start=2&Count=1
The Designer help states that these parameters can be combined.
Did anyone else had to fight this problem?
The scenario:
I am using a dojo grid to display view data and via a filter the user can jump to entries starting with specific characters. The grid pulls in 30 entries at a time when scrolling down the grid.
The problem here is that the same entries are being pulled again when scrolling on a grid where a filter was used.
It all works fine without the StartKey parameter when the user did not use a filter.