List column number type was falling back to text

Since custom list column types an exception is thrown for unknowns. This makes number known.
Fixes #2438
This commit is contained in:
Samuel Georges 2016-10-22 03:10:50 +11:00
parent f9dd5b2f57
commit 91e7e8b950
1 changed files with 8 additions and 0 deletions

View File

@ -912,6 +912,14 @@ class Lists extends WidgetBase
return htmlentities($value, ENT_QUOTES, 'UTF-8', false);
}
/**
* Process as number, proxy to text
*/
protected function evalNumberTypeValue($record, $column, $value)
{
return $this->evalTextTypeValue($record, $column, $value);
}
/**
* Process as partial reference
*/