Well I find the error by comparing with a former component cook
happens in the
/administrator/components/com_your_component/models/fields /cktext.php
Note! This solution is posted on a provisional basis pending a response from the admin
open the file
cktext.php
and search the fonction "
getInput"
public function getInput()
{
$this->input = JDom::_('html.form.input.text', array_merge(array(
'dataKey' => $this->getOption('name'),
'domClass' => $this->getOption('class'),
'formControl' => $this->formControl,
'size' => $this->getOption('size')
), $this->jdomOptions));
return parent::getInput();
}
replace with
public function getInput()
{
$this->input = JDom::_('html.form.input.text', array_merge(array(
'dataKey' => $this->element['name'],
'dataValue' => $this->value,
'domClass' => (isset($this->element['class'])?$this->element['class']:null),
'formControl' => $this->formControl
), $this->jdomOptions));
return parent::getInput();
}
Well, I hope that the bug will be fixed soon
Good day