Hi,
I want to customise the backend CMS, starting with a couple of simple changes. To for example this dataObject:
private static $db = array(
'SpeventID' => 'Int',
'Name' => 'Varchar',
'Description' => 'Text',
'Description' => 'Text',
);
As you can see the first field/column 'SpeventID' is not very user-friendly. Is it possible to add a custom label without having to change the column value?
Also if I have a 'date' data type in my database I want to provide a clickable calendar rather than expecting the user to input a string in a particular format. Similarly I'd like to provide a file select box for certain fields, if for example the field is a file name?
Is any of this possible?
Thanks,
Alan.