gpt4 book ai didi

yii2 - 如何禁用 yii2 ActiveFrom dropDownList 中的一项?

转载 作者:行者123 更新时间:2023-12-04 23:44:33 25 4
gpt4 key购买 nike

Yii2 主动形式

<?= $form->field($model, 'pid')->dropDownList([1=>1,2=>2])->hint('上级分类') ?>

我想禁用选项 2=>2。

有没有办法做到这一点?

最佳答案

您可以使用“选项”键为下拉列表中的所有项目添加属性。假设您要禁用第二项。

<?= $form->field($model, 'pid')->dropDownList([1 => 1, 2 => 2], ['options' => [2 => ['disabled' => true]]])->hint('上级分类') ?>

在文档中:
http://www.yiiframework.com/doc-2.0/yii-helpers-basehtml.html#activeDropDownList()-detail

关于yii2 - 如何禁用 yii2 ActiveFrom dropDownList 中的一项?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31720718/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com