如何使 MultiCheckBox 标签变粗或变强?

How to make MultiCheckBox Label bold or strong?

我有以下多选框:

   $this->add(array(
        'type' => 'DoctrineModule\Form\Element\ObjectMultiCheckbox',

        'name' => 'directPractice',
        'options' => array(
           'label' => 'A. Check all direct practice field education assignments',

         **EDIT 1:**
         'label_attributes' => array(
                'class'  => 'label-multicheckbox-group'
            ),


            'object_manager' => $this->getObjectManager(),
            'target_class' => 'OnlineFieldEvaluation\Entity\FieldEducationAssignments', //'YOUR ENTITY NAMESPACE'
            'property' => 'directPractice', //'your db collumn name'
            'value_options' => array(
                '1' => 'Adults',
                '2' => 'Individuals',
                '3' => 'Information and Referral',
                '4' => 'Families',
            ),
        ),
        'attributes' => array(
            'value' => '1', //set checked to '1'
            'multiple' => true,
        )
    ));

如何将下面的部分加粗? 使用 label_attributes 使所有标签都加粗,我只希望多框的主标签加粗。

'label' => 'A. Check all direct practice field education assignments',

编辑 1:将 label_attributes 添加到 "options"

当我按照@itrascastro 的建议添加 label_attributes 时,所有标签都变为粗体,我只希望最上面的标签变为粗体:multicheckbox

尝试将此添加到您的选项中:

'options'    => array(
    'label_attributes' => array(
        'class'  => 'myCssBoldClass'
    ),
    // more options
),

每个值选项 accepts an array of options

例如

'value_options' => [
    [
        'label' => 'Adults',
        'label_attributes' => [
            'class' => 'my-bold-class',
        ],
        'attributes' => [],
        'value' => 1,
        'selected' => false,
        'disabled' => false,
    ],
    '2' => 'Individuals',
    '3' => 'Information and Referral',
    '4' => 'Families',
],

我添加了一些您可以定义的其他值;它们显然是可选的。

由于没有内置选项可以仅针对顶部标签执行此操作,因此我使用 jQuery 来完成此操作:

$("label[for]").each(function(){
    $(this).addClass("label-bold");
});