Skip to content

Instantly share code, notes, and snippets.

@cupertinobr
Forked from fayqLs/.php
Created November 2, 2023 23:11
Show Gist options
  • Save cupertinobr/8fb08ac140676c12abe9cb4d93c9f184 to your computer and use it in GitHub Desktop.
Save cupertinobr/8fb08ac140676c12abe9cb4d93c9f184 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