jqGrid的问题,充当对话框模式弹出窗口

时间:2016-02-19 18:21:23

标签: asp.net-mvc-4 jqgrid mvcjqgrid

我设计了jqGrid,jqGrid显示为带有警告标志的Modal弹出窗口 它为什么这样做?我不希望它作为模态对话框。屏幕截图已附上 任何帮助表示赞赏

enter image description here

这是我的代码:

<script src="~/Scripts/jquery.jqGrid.src.js"></script>
<script src="~/Scripts/i18n/grid.locale-en.js"></script>

$(function () {
    jQuery("#grid2").jqGrid({
        data: POnbrsDetails,
        datatype: "local",
        colNames: ['PO_NBR', 'FY', 'LN', 'FOA', 'PROJ_ID', 'SCR_TPY', 'Encum_Amt', 'Paid', 'Balance'],
        colModel: [
            { name: 'PO_Nbr', index: 'PO_Nbr', width: 100, align: "center", },
            { name: 'FY', index: 'FY', width: 100, align: "left" },
            { name: 'LN', index: 'LN', width: 100, align: "center" },
            { name: 'FOA', index: 'FOA', width: 120, align: "right" },
            { name: 'PROJ_ID', index: 'Proj_ID', width: 100, align: "center" },
            { name: 'SCR_Type', index: 'Srce_Type', width: 100 },
            { name: 'Encum_Amt', index: 'Encum_Amt', width: 100, align: "center", summaryType: 'sum' },
            { name: 'Paid', index: 'Paid', width: 100, summaryType: 'sum' },
            { name: 'Balance', index: 'Balance', width: 100, summaryType: 'sum' }
        ],
        rowNum: 10,
        rowList: [10, 20, 30],
        height: 'auto',
        pager: '#pager',                
        viewrecords: true,
        sortorder: "desc",
        caption: "SWIFT NSME",
        grouping: true,
        groupingView: {
            groupField: ['PO_Nbr'],
            groupColumnShow: [true],
            groupCollapse: false,
            groupSummary: [true],
            showSummaryOnHide: true,
            groupDataSorted: true,                  
        },
        footerrow: true,
        userDataOnFooter: true
    });
    jQuery("#grid2").jqGrid('navGrid','#pager2',{edit:false,add:false,del:false});
});

<table id="grid2"></table>
<div id="pager"></div>

1 个答案:

答案 0 :(得分:0)

只需要更多信息来提供一些选择。警告弹出窗口何时打开? jquery代码中的弹出初始化在哪里?你有没有初始化弹出窗口?弹出式html块在哪里?警告弹出窗口会在哪种情况下打开?