Abu, when I add a record and I choose a client, I have to show the address, postal code and locality, but these last three data should not be able to be modified, only informative. How can it be done? Thank you
1 Answers
Hello,
If you are using dropdown to choose client, then you can use callback function to these fill fields and make them readonly with no border.
http://prntscr.com/fxr4s2
Code: In dropdown-callback.php set gender column to:
$col = array();
$col["title"] = "Gender";
$col["name"] = "gender";
$col["width"] = "40";
$col["editable"] = true;
$col["editoptions"] = array("readonly"=>"readonly", "style"=>"border:0");
$cols[] = $col;
Your Answer