Example #1
0
 /**
  * Adds a callback
  *
  * @param string $index The column name for the callback
  * @param callable $function The callback function,
  *                           which should be of the form
  *                           function($column, $row).
  * @return $this 
  * @static 
  */
 public static function callback($index, $function)
 {
     return \Bootstrapper\Table::callback($index, $function);
 }