Calendar problem with skipped records?
Archived from the Xataface Users forum.
Martin Dowse — Thu Apr 16, 2009 1:27 am
Version 1.5.5
The calendar is really really useful but I noitced one thing that may be a bug. If you are in list mode paging through records and then click on the calendar the url request string passed to the calender includes the current -skip=x parameter so the calendar omits the first x records. To stop happening I added the following to index.php
if (($_REQUEST[‘-table’]) == ‘Jobs’ and ($_REQUEST[‘-action’]) == ‘calendar’) {
$_REQUEST[‘-skip’] = 0;
}
shannah — Fri Apr 17, 2009 10:41 am
Thanks for reporting this. I’ll look into this when I get a chance to confirm whether this is desired behavior, and if so, how it can be changed to achieve better results.
-Steve