paging for tables

This commit is contained in:
Peter Schojer
2008-10-01 06:19:09 +00:00
parent 2045597f3f
commit 00b1f3cde5
21 changed files with 349 additions and 12 deletions

View File

@@ -71,4 +71,15 @@ Poco::Any DateFormatter::parse(const std::string& value) const
}
bool DateFormatter::lowerThan(const Poco::Any& first, const Poco::Any& second) const
{
if (first.empty())
return true;
if (second.empty())
return false;
return Poco::RefAnyCast<DateTime>(first) < Poco::RefAnyCast<DateTime>(second);
}
} } // namespace Poco::WebWidgets