私はjqgridを使用しています。レコードのインライン ナビゲーションを追加したい 行フィールドに選択ボックスを追加します。どのように可能ですか?Ajax を使用してデータベースからデータを取得しており、これらのデータを選択ボックスに追加したいと考えています。どのように可能ですか?私のAjaxコードを助けてください
$.ajax({
url : "getAllWards.html",
data : "&time=" + new Date().getTime(),
type : 'GET',
dataType : 'JSON',
success : function(data) {}
});
私のJqGridコード
jQuery("#room").jqGrid(
{
mtype : 'GET',
url : "listAllRooms.html",
colModel : [ .....,
,{
name : 'wardType',
index : 'wardType',
width : 150,
edittype: "select",
editrules: { required: true },
editoptions: { size: 71},
editable:true,
}],