public function number($fieldName, array $options = array()) { $this->AlaxosHtml->includeAlaxosJS(); $this->addWidget('number', ['Alaxos\\View\\Widget\\Number']); $type = $this->_context->type($fieldName); if ($type == 'float') { $options['decimal'] = true; } return parent::number($fieldName, $options); }