Skip to content

Instantly share code, notes, and snippets.

@fayqLs
Last active April 19, 2024 02:27
Show Gist options
  • Save fayqLs/24d12b7cb5a08565749028f2b7bd6538 to your computer and use it in GitHub Desktop.
Save fayqLs/24d12b7cb5a08565749028f2b7bd6538 to your computer and use it in GitHub Desktop.
OCULTAR COLUNA DO DATAGRID DETAILFORM
<?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