gpt4 book ai didi

javascript - jqGrid Pager 图标不显示

转载 作者:太空宇宙 更新时间:2023-11-04 14:03:21 25 4
gpt4 key购买 nike

我通读了有关此问题 Stack 的其他几篇文章,但未能找到解决方案。这是我的 html 的链接。我是否遗漏了任何 CSS 或其他内容?

<script src="jquery/jquery-1.4.1.min.js"></script>
<script src="jquery/jquery-1.4.1.js"></script>

<!-- jqGrid -->
<link rel="stylesheet" type="text/css" href="jqGrid/ui.jqgrid.css" />
<link rel="stylesheet" type="text/css" href="jqGrid/jquery-ui-custom.css" />
<script src="jqGrid/grid.locale-en.js" type="text/javascript"></script>
<script src="jqGrid/jquery.jqGrid.min.js" type="text/javascript"></script>

我正在测试的代码只是来自 jqGrid 站点的示例的副本。

 $(document).ready(function (event) {

jQuery("#listArray").jqGrid({
datatype: "local",
height: 100,
colNames: ['Inv No', 'Date', 'Client', 'Amount', 'Tax', 'Total', 'Notes'],
colModel: [
{ name: 'id', index: 'id', width: 60, sorttype: "int" },
{ name: 'invdate', index: 'invdate', width: 90, sorttype: "date" },
{ name: 'name', index: 'name', width: 100 },
{ name: 'amount', index: 'amount', width: 80, align: "right", sorttype: "float" },
{ name: 'tax', index: 'tax', width: 80, align: "right", sorttype: "float" },
{ name: 'total', index: 'total', width: 80, align: "right", sorttype: "float" },
{ name: 'note', index: 'note', width: 150, sortable: false }
],
multiselect: false,
caption: "Manipulating Array Data",
rowNum: 6,
rowList: [3, 6, 9],
pager: '#jqPager',
});

var mydata = [
{ id: '1', invdate: '2007-10-01', name: 'test', note: 'note', amount: '200.00', tax: '15.37', total: '210.89' },
{ id: "2", invdate: "2007-10-02", name: "test2", note: "note2", amount: "300.00", tax: "20.00", total: "320.00" },
{ id: "3", invdate: "2007-09-01", name: "test3", note: "note3", amount: "400.00", tax: "30.00", total: "430.00" },
{ id: "4", invdate: "2007-10-04", name: "test", note: "note", amount: "200.00", tax: "10.00", total: "210.00" },
{ id: "5", invdate: "2007-10-05", name: "test2", note: "note2", amount: "300.00", tax: "20.00", total: "320.00" },
{ id: "6", invdate: "2007-09-06", name: "test3", note: "note3", amount: "400.00", tax: "30.00", total: "430.00" },
{ id: "7", invdate: "2007-10-04", name: "test", note: "note", amount: "200.00", tax: "10.00", total: "210.00" },
{ id: "8", invdate: "2007-10-03", name: "test2", note: "note2", amount: "300.00", tax: "20.00", total: "320.00" },
{ id: "9", invdate: "2007-09-01", name: "test3", note: "note3", amount: "400.00", tax: "30.00", total: "430.00" }
];

for (var i = 0; i <= mydata.length; i++) {
jQuery("#listArray").addRowData(i + 1, mydata[i]);
}

另一件事是页码无法正常工作。当我第一次加载页面时,它将显示第 1 页,共 0 页。当我单击“每页记录数”框以更改为默认值以外的内容时,页码将正确更新。有没有办法修复它,以便页码在页面加载时显示正确的第 1 页,共 2 页?

谢谢!

最佳答案

对我来说,这是 .png 文件没有被拾取的情况。在 jquery-ui.css 中,通过将 ../放在前面来更改您的相对引用,例如 images/xxxxx.png 变为 ../images/xxxxxx.png

关于javascript - jqGrid Pager 图标不显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21320480/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com