Added jquery validation and other minor cleanup

This commit is contained in:
Deon George
2013-06-06 21:25:25 +10:00
parent 823248cbe0
commit 95a58d5fa7
4 changed files with 11 additions and 10 deletions

View File

@@ -25,7 +25,12 @@ abstract class lnApp_Table {
private $select = array(); // Our select form details
public function __toString() {
return (string) $this->render();
try {
return (string) $this->render();
} catch (Exception $e) {
return $e->getMessage();
}
}
public function columns($cols) {