Skip to content

Instantly share code, notes, and snippets.

@devfabriciobr
Created February 4, 2026 20:10
Show Gist options
  • Select an option

  • Save devfabriciobr/5a0844fe8c2de012d037d4ec38136f1d to your computer and use it in GitHub Desktop.

Select an option

Save devfabriciobr/5a0844fe8c2de012d037d4ec38136f1d to your computer and use it in GitHub Desktop.
MOSTRAR REGISTROS DELETADOS
<?php
public function onReload($param = NULL)
{
try
{
TTransaction::open(self::$database);
$repository = new TRepository(self::$activeRecord);
# MOSTRA TODOS OS REGISTROS + DELETADOS
//<onBeforeDatagridLoad>
$repository->withTrashed();
//</onBeforeDatagridLoad>
TTransaction::close();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment