-
-
Save devfabriciobr/0ffae79767f6ccb283e615ed5ffe8f22 to your computer and use it in GitHub Desktop.
OCULTAR BOTÃO NO onEdit
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| public function onEdit( $param ) | |
| { | |
| $this->form->setData($object); | |
| if ($object->ativo == 'NÃO') # OCULTA O BOTÃO SALVAR CASO O CAMPO ATIVO SEJA = NÃO | |
| { | |
| $this->btn_salvar->style = 'display:none'; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment