Interface Yiisoft\Yii\DataView\GridView\Column\ColumnInterface
Interface defining the contract for grid columns.
This interface is the foundation for all grid columns in the data view system. It defines the minimal requirements that any column must implement to be properly rendered within a grid.
Public Methods
| Method | Description | Defined By |
|---|---|---|
| getRenderer() | Gets the fully qualified class name of the column's renderer. | Yiisoft\Yii\DataView\GridView\Column\ColumnInterface |
| isVisible() | Determines if the column should be rendered in the grid. | Yiisoft\Yii\DataView\GridView\Column\ColumnInterface |
Method Details
Gets the fully qualified class name of the column's renderer.
See also Yiisoft\Yii\DataView\GridView\Column\ColumnRendererInterface The interface that the renderer must implement.
| public abstract string getRenderer ( ) | ||
| return | string |
The fully qualified class name of the renderer. |
|---|---|---|
public function getRenderer(): string;
Signup or Login in order to comment.