addColumn('no', 'no'); $this->addColumn( 'name', 'name', [ 'title' => 'Company Name', 'orderBy' => 'name', 'activeCompanyIndividualsUrl' => UserAdminView::getActiveCompanyUsersUrl(), ] ); $this->addColumn('city', 'city', ['title' => 'City / State', 'orderBy' => 'city']); $this->addColumn('text', 'counties', ['defaultText' => '-']); $this->addColumn('text', 'congressDistrict', ['title' => 'Cong. District', 'defaultText' => '-']); $this->addColumn('text', 'houseDistrict', ['title' => 'Leg. District', 'defaultText' => '-']); $this->addColumn('text', 'yearFounded', ['orderBy' => 'yearFounded', 'defaultText' => '-']); $this->addColumn('options', 'options', ['actions' => 'view;edit;delete']); return $this; } }