I am use jqgrid. I want to add record inline navigation Now I want add select Box in Rows Field. how it possible? I am get Data from Database using Ajax and I want to add these data in Select Box. How its Possible? Please Help My Ajax Code
$.ajax({
url : "getAllWards.html",
data : "&time=" + new Date().getTime(),
type : 'GET',
dataType : 'JSON',
success : function(data) {}
});
my JqGrid Code
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,
}],