Hi!
I'm trying to make a conditional between 2 columns but is not work because one of them is a external link.
$cols[] = array(
"title" => "Price1",
"name" => "price1",
"editable" => false,
"search" => true,
"link" => "http://www.google.es/q/{search}",
"linkoptions" => "target='_blank'",
);
$cols[] = array(
"title" => "Price2",
"name" => "price2",
"editable" => false,
"search" => true,
);
//Condition
$f_conditions[] = array(
"column" => "price2",
"op" => ">=",
"value" => "{price1}",
"cellclass" => "green",
);
How can I fix it?
Regards!