Master-detail

QuestionsMaster-detail
Lazaro Gustavo asked 10 months ago

I have a master-detail program. In the detail I have a combo field. How can I make the “select” dynamically assembled based on a field of the master grid.
Example :
$codContratoCabecera = $_GET[“codContratoCabecera”];
$codContratoCabecera is the field that I send to assemble the detail grid and is the value that I want to use in the “WHERE” of the “SELECT”. Thank you
$col = array();
$col[“title”] = “Practica”;
$col[“name”] = “codNomenclador”;
$str = $g->get_dropdown_values(“SELECT codNomenclador AS k, practica AS v FROM pro_proveedores WHERE codContratoCabecera=’$codContratoCabecera'”);
$col[“stype”] = “select”; // enable dropdown search
$col[“searchoptions”] = array(“value”=>$str, “separator” => “:”, “delimiter” => “;”);
$col[“edittype”] = “select”;
$col[“editable”] = true;
$col[“editoptions”] = array(“value”=>”:;”.$str, “separator” => “:”, “delimiter” => “;”);
$col[“formatter”] = “select”; // Muestra el valor y no el codigo
$col[“width”] = “70”;
$col[“show”] = array(“list”=>false, “view”=>false);
$cols[] = $col;

1 Answers
Abu Ghufran Staff answered 5 months ago

This requirement is recently implemented in the latest build.
If it’s still required, updated version can be requested here.

_________________________
Abu Ghufran - Dev Team
Grid 4 PHP Framework
 
Your Answer

13 + 14 =

Login with your Social Id:

OR, enter

Attach code here and paste link in question.
Attach screenshot here and paste link in question.



How useful was this discussion?

Click on a star to rate it!

Average rating 0 / 5. Vote count: 0

No votes so far! Be the first to rate it.

We are sorry that this post was not useful for you!

Let us improve this post!

Tell us how we can improve this post?