-
-
Save cupertinobr/8fb08ac140676c12abe9cb4d93c9f184 to your computer and use it in GitHub Desktop.
OCULTAR COLUNA DO DATAGRID DETAILFORM
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 | |
# SEM O CLASS | |
TScript::create("$('table th:contains(\"TITULO DA COLUNA\")').hide();"); | |
# COM O CLASS | |
TScript::create("$('table th.tdatagrid_col:contains(\"TITULO DA COLUNA\")').hide();"); | |
# "tdatagrid_col" É O NOME DO class | |
# "TITULO DA COLUNA" É O NOME DO TÍTULO DA COLUNA |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment