Firstly, Sorry for the long post :)
Im currently creating a training database for use within the business (not done many getting used to coding)
I used MySQLMaestro to construct the datagrid and have modified it to suit most my needs.
however i have one issue that i cant resolve.
at the bottom of a column i can add a count to show the amount of records applied by a search filter.
// View column for name field
//
$column = new TextViewColumn('employees_name_name', 'Employees Name', $this->dataset);
$grid->SetTotal($column, Aggregate::Count);
$column->SetOrderable(true);
$handler = new ShowTextBlobHandler($this->dataset, $this, 'name_handler', $column);
GetApplication()->RegisterHTTPHandler($handler);
where
$grid->SetTotal($column, Aggregate::Count);
sets the count at the footer of the page
Is there a way to also show this value as a percentage??
we currently have 437 employees in our immediate business, of which only 5% can be on training at any one time.
I've added a modified screenshot to help explain..
thanx in advance
KeeF Jukes