Skip to content

Instantly share code, notes, and snippets.

@devfabriciobr
Created March 22, 2026 18:13
Show Gist options
  • Select an option

  • Save devfabriciobr/0ffae79767f6ccb283e615ed5ffe8f22 to your computer and use it in GitHub Desktop.

Select an option

Save devfabriciobr/0ffae79767f6ccb283e615ed5ffe8f22 to your computer and use it in GitHub Desktop.
OCULTAR BOTÃO NO onEdit
<?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