I am creating application in MVC 4 jqgrid, I created jqgrid with multiselect option true, but checkbox column comes in the left hand side of my grid. How can I move the multiselect column option to the right side?
code:
$("#ApplicationDetailsTable").jqGrid({
url: '@Url.Action("AppListDetails", "JQGridHome")',
sortable: true,
datatype: 'json',
colNames: ["no1", "name", "phone","department"],
colModel: [
{ name: "no1", index: "no1", width: 40, align: "left", stype: 'select', searchoptions: { sopt: ['eq'], value: getstaticvalue() } },
{ name: "name", index: "name", width: 60, align: "left"},
{ name: "phone", index: "phone", width: 60, align: "left" },
{ name: "department", index: "department", width: 60, align: "left", stype: 'select', searchoptions: { sopt: ['eq'], value: setdepartmentValue() } }
],
width: 650,
loadonce: true,
height: 200,
toppager: false,
pager: $("#JQGridPaging"),
rowNum: 6,
rowList: [5,10],
viewrecords: true,
hidegrid: true,
caption: "A Basic jqGrid - Read Only",
multiselect: true
}
image