Hello,
I have added a custom TextField into CMS of a DataObject
function getCMSFields() {
$fields = parent::getCMSFields();
...
$fields->addFieldToTab('Root.Main', new TextField('MyField', 'My custom field'));
..
}
And I do not want how ti access to it (value, etc) from other method like function ManageMyField(). I have tried a lot of variations but none works.. Do you have an idea?