Skip to content

Instantly share code, notes, and snippets.

@AngeloR
Created April 20, 2011 17:00
Show Gist options
  • Select an option

  • Save AngeloR/931926 to your computer and use it in GitHub Desktop.

Select an option

Save AngeloR/931926 to your computer and use it in GitHub Desktop.
Modify a row using OPCDataGrid
<?php
$dg->modify('username', function($value,$row) {
return 'modified - '.$row['user_id'].'|'.$value;
});
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment