2

我有这样的数据:
在此处输入图像描述

我使用这些数据来填充 select2 kartik 组合框,这是我的 yii2 代码,

echo \kartik\widgets\Select2::widget([
                                'attribute' => 'pembuatSoal_id',
                                'model' => $model,
                                'data' => array_merge(["" => ""], \yii\helpers\ArrayHelper::map(\app\models\ViewUsernameGuru::find()->all(), "uname", "nama")),
                                'options' => ['placeholder' => 'Pilih Guru...', 'id' => 'guru-id', 'class' => "form-control"],
                                'pluginOptions' => [
                                    'allowClear' => true,
                                    'theme' => \kartik\widgets\Select2::THEME_BOOTSTRAP
                                ],
                            ]);

uname字段作为 select2 的值,nama 作为显示值。但结果是这样的:
在此处输入图像描述

但是当 uname 字段的值为 number 时,select2 会自动随着 select2 项的数组索引而变化。

希望有人能给我解决办法。

谢谢。

4

3 回答 3

1

尝试这个:

  echo \kartik\widgets\Select2::widget([
                            'attribute' => 'pembuatSoal_id',
                            'model' => $model,
                            'data' => \yii\helpers\ArrayHelper::map(\app\models\ViewUsernameGuru::find()->all(), "uname", "nama")),
                            'options' => ['placeholder' => 'Pilih Guru...', 'id' => 'guru-id', 'class' => "form-control"],
                            'pluginOptions' => [
                                'allowClear' => true,
                                'theme' => \kartik\widgets\Select2::THEME_BOOTSTRAP
                            ],
                        ]);

在这里找到它:

于 2015-09-07T10:59:47.220 回答
0

如前所述,问题确实在于重新array_merge索引数字数组,数字字符串,在这种情况下结果相同

[9 => 'foo'] 
['9' => 'foo']

我相信所需的功能是具有“正常”选择标签的外观,能够选择“空”第一个选项,该选项在选择时设置空值。

我一直在寻找并找到了简单的解决方案,即添加数组

['' => 'Select value...'] + [0 => false, 1 => true]

对于空的第一个选项元素,设置不应包含placeholder,因为它不会将其显示在选项列表中,而是将其作为选项名称。 allowClear可以设置为 false,或者将其保留为默认状态

导致:

echo \kartik\widgets\Select2::widget([
    'attribute' => 'pembuatSoal_id',
    'model' => $model,
    'data' => (["" => "Pilih Guru..."] + \yii\helpers\ArrayHelper::map(\app\models\ViewUsernameGuru::find()->all(), "uname", "nama")),
    'options' => ['id' => 'guru-id', 'class' => "form-control"],
    'pluginOptions' => [
        'allowClear' => false, // false is default so could be left out
        'theme' => \kartik\widgets\Select2::THEME_BOOTSTRAP,
        'dropdownAutoWidth' => 'true', // to autocalculate width of selection list
    ],
]);

来源:PHP:合并两个数组,同时保留键而不是重新索引?

于 2016-12-15T23:15:47.130 回答
0

这是因为array_merge。为什么要使用它,因为您可以选择 "allowClear" = true 来允许空选择?

如果您删除 array_merge,则索引不会更改。

只需添加它以允许空选择并为其命名。

'filterWidgetOptions'=>[
            'pluginOptions' => ['allowClear' => true],
 ],
'filterInputOptions' => ['placeholder' => \Yii::t('app', 'Any Entry')],

我测试了过滤器上的设置,但普通小部件的设置是相似的:

'options' => ['placeholder' => 'Any entry'],
'pluginOptions' => [
    'allowClear' => true
],

非常适合我......所以在你的情况下它只是

echo \kartik\widgets\Select2::widget([
'attribute' => 'pembuatSoal_id',
'model' => $model,
'data' => \yii\helpers\ArrayHelper::map(\app\models\ViewUsernameGuru::find()->all(), "uname", "nama"),
'options' => ['placeholder' => 'Pilih Guru...', 'id' => 'guru-id', 'class' => "form-control"],
'pluginOptions' => [
    'allowClear' => true,
    'theme' => \kartik\widgets\Select2::THEME_BOOTSTRAP
],
]);
于 2015-09-07T10:46:06.367 回答