这是我的一段代码:
colModel: [{ name: 'Cuenta', index: 'Cuenta_Id', width: 0, editable: true, edittype: "select", editoptions: {value: jqGridCargarArregloDatosDropDown() }}
“jqGridCargarArregloDatosDropDown()”函数检索此 json 数据:
"Id:Texto;Id2:Texto2;Id3:Texto3;"
例如,我需要像这样设置我的下拉列表选项标签的“名称”属性:
<select>
<option value="Id" name="....">Texto</option>
<option value="Id2" name="....">Texto2</option>
</select>
有人知道如何使用 json 作为下拉列表的数据源来实现这一点吗?
先感谢您。