我想在CRUD表单中添加提示,但收到错误。
$temp_crud->getElement('pin')->setFieldHint('the hint');
答案 0 :(得分:1)
只需将其添加到您的模型中:
$this->addField('my_field')->hint('this hint will show on the form');
或者你可以做
if($temp_crud->form) {
$temp_crud->form->getElement('pin')->setFieldHint('the hint');
}