4

有可能通过jqgrid得到这样的设计吗

   ------------------------------- ----------
   | S.N0 | order ID   |   Date  |   Amount |
            ---------    -------
   |      | Location   |   Status|          |
    ------------------------------ ---------
   |   1  |  45        |  1/1/11 |  100     |
            ---------    -------- 
   |      |  E123      |   Done  |          |
    ------------------------------ ----------

在 2X2(第二列,第二行)中,我需要显示订单 ID 和位置。位置值应显示在订单 ID 下。有可能吗?

4

1 回答 1

5

对于该列,您可以定义一个自定义格式化程序,您将能够对其应用任何您喜欢的样式。在该格式化程序中,您可以访问该行中所有对象的值。因此,对于您的订单/位置格式化程序,您可以像这样将两者结合起来:

function orderFmatter( cellvalue, options, rowObject )
{
    return "<div>" + cellvalue + "</div><hr /><div>" 
               + rowObject.Location + "</div>";
}

您可能希望向这些 div 添加类,以便您可以更好地设置样式以满足您的需求。至于您的列定义,您需要在其中一列上声明 customFormatter (注意:声明它的那一列将是上面函数中的变量 cellvalue),然后需要隐藏另一列需要作为 rowObject 的一部分。前任。

{
    name: 'OrderID',
    index: 'OrderID',
    width: 90,
    formatter:orderFmatter},
{
    name: 'Location',
    index: 'Location',
    hidden: true},

这是我的全部示例:

$("#grid").jqGrid({
    datatype: "local",
    height: 250,
    colNames: ["SNO", "OrderID", "Location", "Date", "Status", "Amount"],
    colModel: [{
        name: 'SNO',
        index: 'SNO',
        width: 60},
    {
        name: 'OrderID',
        index: 'OrderID',
        width: 90,
        formatter:orderFmatter},
    {
        name: 'Location',
        index: 'Location',
        hidden: true},
    {
        name: 'Date',
        index: 'Date',
        width: 80,
        formatter:dateStatusFmatter},
    {
        name: 'Status',
        index: 'Status',
        width: 80,
        hidden: true},
    {
        name: 'Amount',
        index: 'Amount',
        width: 80}
    ],
    caption: "Stack Overflow Example",
});

function orderFmatter( cellvalue, options, rowObject )
{
    return "<div>" + cellvalue + "</div><hr /><div>" + rowObject.Location + "</div>";
}

function dateStatusFmatter( cellvalue, options, rowObject )
{
    return "<div>" + cellvalue + "</div><hr /><div>" + rowObject.Status+ "</div>";
}

小提琴也可以在这里找到

这只会留下你的标题,这有点困难并且可能会变得丑陋。我建议不要在标题上进行拆分级别并执行类似Order Id/Location. 可以通过这样做来设置:

jQuery("#grid").jqGrid('setLabel', 'OrderID', 'Order Id/Location');

就像在这个小提琴中一样。

If you absolutely have to set the header like in your example, I can see what I can figure out, but this should get you started.

于 2012-07-26T12:39:29.217 回答