Hello Abu. I use a implementation of the Master-Detail grid. When a use the sentence "phpgrid_error('La fecha de partida no puede ser posterior a la fecha de retorno.')" inside the callback function on_insert that correspond to the detail grid nothing is shown. Can you help me?. Thanks again.
Hello Abu. I could find the mistake. The property $col["editable"] of the field "a_fecha_retorno" was set to false. I find that if that property is set to false the value of that field is not accessible within any callback function because the library does not send it as the other parameter that are editable.
So i have a new question: What do i do if a want that i field remains no editable in the detail grid but still visible?.
Thanks Abu for your time.
You are can it readonly while keeping editable = true.
You can also set certain column as readonly on edit dialog, and editable on add dialog.
$col["editrules"]["readonly"] = true;