Check documentation for the latest version of dhtmlxSuite setValue DHTMLX Docs

setValue

Sets the value for the specified cell(s).

Parameters

  • $cell - (string|array) the cell coordinate (e.g. 'B1') or an array of coordinates of several cells
  • $value - (string|number) the value to set

Example

$sh = new SpreadSheet($res, "1", $db_prefix);
$sh->setValue("B1", "some value");

See also: getValue, getCalculatedValue

Back to top