Skip to content

Instantly share code, notes, and snippets.

@dmsysop
Created October 23, 2015 19:00
Show Gist options
  • Save dmsysop/356eefd49ff79352a89c to your computer and use it in GitHub Desktop.
Save dmsysop/356eefd49ff79352a89c to your computer and use it in GitHub Desktop.
echo $this->Form->input('cnpj', array(
'between' => '<div class="col-sm-3">',
'class' => 'gui-input',
'id' => 'cnpj',
'label' => 'CNPJ')
);
echo $this->Html->scriptBlock("
$(document).ready(function() {
$('#cep').mask('99999-999');
$('#cnpj').mask('99.999.999/9999-99');
$('.fone').mask('(99)9999-9999?');
$('.note-codable').prop('name', 'data[Empresa][descricao]');
});
", array('inline' => false));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment