YAFLogo

Posted by: JoeOuts - Monday, 22 June 2009 06:35:54
Minor problem with paging on the active topics page. Problem: When you select a time range that brings up multiple pages of posts and you select anything greater than page one. Then select one hour from the Since dropdown which should bring up only 1 page of posts. This causes no data to display because the Pager.CurrentPageIndex was not reset to 0 Solution: Add Pager.CurrentPageIndex = 0 to Since_SelectedIndexChanged in active.acsx.cs protected void Since_SelectedIndexChanged(object sender, System.EventArgs e) { Pager.CurrentPageIndex = 0; BindData(); }

Posted by: mddubs - Monday, 22 June 2009 08:23:36
Thanks Joe. I'll add it to source when I get back in town and boot my system back up. fp:mddubs

Posted by: Jaben - Wednesday, 24 June 2009 13:08:29
Thanks for the bug report.