我有一个 jQgrid,我需要为其提供编辑功能,当用户单击特定行时,该行详细信息应显示在弹出窗口中...
在我看来,这是我的 jquery 代码
<table id="list" class="scroll" cellpadding="0" cellspacing="0" width="175"></table>
<script type="text/javascript">
$(function () {
jQuery("#list").jqGrid({
url: '/Home/GetStudents/',
datatype: 'json',
mtype: 'POST',
colNames: ['StudentID', 'FirstName', 'LastName', 'Email'],
colModel: [
{ name: 'StudentID', index: 'StudentID', width: 150, align: 'center',sortable:false },
{ name: 'FirstName', index: 'FirstName', width: 150, align: 'center', sortable: true },
{ name: 'LastName', index: 'LastName', width: 150, align: 'center', sortable: false },
{ name: 'Email', index: 'Email', width: 200, align: 'center', sortable: false}],
pager: jQuery('#pager'),
width:750,
rowNum: 15,
rowList: [5, 10, 20, 50],
sortname: 'StudentID',
sortorder: "asc",
viewrecords: true,
caption: ' My First JQgrid'
});
});
</script>