|
|
@{ ViewBag.Title = "SeachInventory"; Layout = "~/Views/Shared/_Index.cshtml"; } <link href="~/Content/js/select2/select2.min.css" rel="stylesheet" /> <link href="~/Content/js/dialog/dialog.css?v=20120420" rel="stylesheet" /> <script src="~/Content/js/datepicker/WdatePicker.js"></script> <script src="~/Content/js/select2/select2.min.js"></script> <script> debugger;
$(function(){ Init(); }) function Init() { document.getElementById("gridPanel").innerHTML = '<table id="gridList"></table><div id="gridPager"></div> ';//重置grid var LocationCode = $("#txt_LocationCode").val(); $("#gridList").dataGrid({ url: "/WMS/ICSMTDOC/GetGridLocationCode" + "?LocationCode=" + LocationCode + "&" + Math.random(), height: $(window).height() - 20, width: $(window).width() - 300, colModel: [ { label: '主键', name: 'ID', hidden: true, key: true }, { label: '库位编码', name: 'LocationCode', width: 150, align: 'left' }, { label: '库位名称', name: 'LocationName', width: 150, align: 'left' }, { label: '仓库编号', name: 'WarehouseCode', width: 150, align: 'left' }, { label: '仓库名称', name: 'WarehouseName', width: 100, align: 'left' }, ], pager: "#gridPager", sortorder: "desc", sortname: 'LocationCode', viewrecords: true, multiselect: true, gridComplete: function () { }, beforeSelectRow: function (rowid, e) { $("#gridList").jqGrid('resetSelection'); return (true); }, }) };
function submitForm() { var rows = $("#gridList").jqGrid('getGridParam', 'selarrrow'); if (rows.length != 1) { $.modalAlertNew("WMS00079"); return; } var rowdata = $("#gridList").jqGrid("getRowData", rows[0]);
var obj = { LocationCode: rowdata.LocationCode, } return obj; }
function Close() { $.modalClose(); }
</script> <div class="topPanel" style="height:50px"> <div class="search"> <table> <tr> <td> <label>库位编码:</label> </td> <td> <div class="input-group"> <input id="txt_LocationCode" type="text" class="form-control" placeholder="库位编码" style="width: 120px;"> </div> </td> <td> <a id="Search" authorize="yes" style="margin-left:3px;" class="btn btn-primary" onclick="Init()"><i class="fa fa-pencil-square-o"></i>查询</a> </td> </tr> <tr></tr> </table> </div> </div> <div class="gridPanel" id="gridPanel"> <table id="gridList"></table> <div id="gridPager"></div> </div>
|