Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想向 CRUD 表单添加提示,但收到错误消息。
$temp_crud->getElement('pin')->setFieldHint('the hint');
只需将其添加到您的模型中:
$this->addField('my_field')->hint('this hint will show on the form');
或者你可以做
if($temp_crud->form) { $temp_crud->form->getElement('pin')->setFieldHint('the hint'); }