1

I'm searching the best way to output a label of a widget with a star (*) if this widget is required. It should be automatic.

I didn't find any way to do it :(

4

3 回答 3

2

One way to do this is to use a custom form formatter.

于 2011-05-15T14:57:52.893 回答
0

你总是可以setLabel在表格中查看:

$this->widgetSchema->setLabel('YOUR_WIDGET', 'NAME <em>*</em>');

这将显示小部件:NAME *然后您可以在 CSS 中设置样式

于 2011-05-16T08:21:28.667 回答
0

使用 Symfony2 我将使用这个简单的 CSS 技巧

.required:after {
    content: "*";
}

在这里找到

于 2015-03-24T10:52:28.020 回答