如何在CRUD表单中使用“setFieldHint”?

时间:2013-09-12 04:58:45

标签: atk4 agiletoolkit

我想在CRUD表单中添加提示,但收到错误。

 $temp_crud->getElement('pin')->setFieldHint('the hint');

1 个答案:

答案 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');
}