/**
  * @param GridControl $grid
  * @return $this
  */
 public static function create(GridControl $grid)
 {
     $called = get_called_class();
     $temp = new $called();
     $grid->addColumn($temp);
     return $temp;
 }