Bugs item #1367650, was opened at 2005-11-27 20:14 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=684975&aid=1367650&group_id=119783
Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: extensions Group: 1.2 Status: Open Resolution: None Priority: 5 Submitted By: Arto Arffman (artoarffman) Assigned to: Nobody/Anonymous (nobody) Summary: AbstractPageableView doesn't notice deleted rows Initial Comment: When you are on a page that "dissappears" (rows are deleted from model) current page is not changed. This is because the condition is not correct. page is zero based and condition is "if (page > getPageCount())". Should be "if (page > getPageCount() - 1)". ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=684975&aid=1367650&group_id=119783 ------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Do you grep through log files for problems? Stop! Download the new AJAX search engine that makes searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click _______________________________________________ Wicket-develop mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/wicket-develop
