How to change the value of the field before displaying? Rate = Rate*10?????
...
private $db = array(
'Rate' => 'Text'
);
...
function getCMSFields(){
$fields = parent::getCMSFields();
$Rate = new TextField('Rate', 'Процент, %','00','2');
$fields->addFieldToTab('Root.Main', $Rate, 'DateFormat');