Check documentation for the latest version of dhtmlxSuite getValidator DHTMLX Docs

getValidator

Gets the validator assigned to the cell.

Return value

  • ('none', 'number', 'email', 'positive', 'not_empty') the validator's name

Example

$cell = new SpreadSheetCell($res, "1","B1", $db_prefix);
$validator = $cell->getValidator();

See also: setValidator, setStyle

Back to top