In order to add Export button on any tab add the below code.
public function __construct()
{
$this->allow_export = true;
}
After that you will see a export button at the top right of your tab from which you can export the data through CSV file
Updated 13 years ago
In order to add Export button on any tab add the below code.
public function __construct()
{
$this->allow_export = true;
}
After that you will see a export button at the top right of your tab from which you can export the data through CSV file
Be the first to comment.