Hi
I'm trying to display information using a subquery but that does that no information is displayed.
$grid->select_command = "SELECT butikspris from omsWeb as pris";
$grid->table = "omsWeb";
$col = array();
$col["title"] = "Artikelkod";
$col["name"] = "productCode";
$col["editable"] = true;
$cols[] = $col;
$col = array();
$col["title"] = "Märke";
$col["name"] = "brand";
$cols[] = $col;
$col = array();
$col["title"] = "Benämning";
$col["name"] = "productName";
$col["editable"] = false;
$cols[] = $col;
$col = array();
$col["title"] = "Antal Länkar";
$col["name"] = "pris";
$cols[] = $col;
2 Answers
Edit:
The query is working. It's just that it takes forever to load. Any ideas on how to fix this?
Your Answer