これは私のコードの一部です:
colModel: [{ name: 'Cuenta', index: 'Cuenta_Id', width: 0, editable: true, edittype: "select", editoptions: {value: jqGridCargarArregloDatosDropDown() }}
「jqGridCargarArregloDatosDropDown()」関数は、次の json データを取得します。
"Id:Texto;Id2:Texto2;Id3:Texto3;"
たとえば、ドロップダウン リスト オプション タグの「name」属性も次のように設定する必要があります。
<select>
<option value="Id" name="....">Texto</option>
<option value="Id2" name="....">Texto2</option>
</select>
ドロップダウンリストのデータソースとしてjsonを使用してこれを達成する方法を知っている人はいますか?
前もって感謝します。