Skip to content

Instantly share code, notes, and snippets.

@fayqLs
Created October 24, 2023 04:48
Show Gist options
  • Save fayqLs/b70168f01289ced51e12fe9bda2fa877 to your computer and use it in GitHub Desktop.
Save fayqLs/b70168f01289ced51e12fe9bda2fa877 to your computer and use it in GitHub Desktop.
DEFINIR ORDENAÇÃO PELO CAMPO DE OUTRA TABELA NO DATAGRID
<?php
public function onReload($param = NULL)
{
if (empty($param['order']))
{
$param['order'] = 'cidade->nome';
$criteria->setProperties($param);
}
$objects = $repository->load($criteria, FALSE);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment