Last active
January 23, 2020 13:22
-
-
Save doug1n/054ad90beab61eb264caefaa725a2995 to your computer and use it in GitHub Desktop.
Desabilitar campos zoom na inicialização do form
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
function inicializaCamposZoom() { | |
if (typeof window['filial'].setValue != 'function') { | |
setTimeout(inicializaCamposZoom, 500); | |
} else { | |
// Seu código aqui... | |
// disableZoom('filial') | |
// prepareReload('motivo', 'tipoRequisicao', '4') | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment