Hello.
I have the next code:
$col = array();
$col["title"] = 'ENVIADO?';
$col["name"] = 'ds_enviado';
$col["width"] = '63';
$col["editable"] = false;
$col["frozen"] = true;
//$col["hidden"] = true;
$cols[] = $col;
(This Column only display 2 values: "S" or "N")
I need put a button in other Column only if the value of the column is "S"
In the Buttom Column i write:
$col["condition"] = $row["ds_id"] == "S";
But not work….
Can help me?
Thanks!
Your Answer