Skip to content

Instantly share code, notes, and snippets.

@scriptdev
Created April 25, 2024 18:16
Show Gist options
  • Save scriptdev/bcc7eab586751b470001b7837a11743a to your computer and use it in GitHub Desktop.
Save scriptdev/bcc7eab586751b470001b7837a11743a to your computer and use it in GitHub Desktop.
CRIAR LINK DE AÇÃO NO BIndicator
<?php
function($value, $object, $row)
{
if($value)
{
$value = 'R$ ' . number_format($value, 2, '.', '');
$link = new TActionLink($value, new TAction(['ExemploForm', 'onShow']));
return $link;
}
return 'R$ 0,00';
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment