Skip to content

Instantly share code, notes, and snippets.

@cupertinobr
Forked from scriptdev/.php
Last active October 24, 2023 11:03
Show Gist options
  • Save cupertinobr/4a4fc7af4d1ac13f260e8b541c85641b to your computer and use it in GitHub Desktop.
Save cupertinobr/4a4fc7af4d1ac13f260e8b541c85641b 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