在Jqgrid中显示数据

时间:2013-06-01 06:05:08

标签: javascript json

我有一个存储在数组变量item中的值,如

var item = JSON.stringify(product);
cartproduct[cartproduct.length] = item; 

item包含

等数据
{
  "Product": "1001",
  "Brand": "Dell",
  "Model": "Inspiron ",
  "Price":"25000"
}

现在我想在相应的jqgrid列中显示此item数据,例如Product,Brand,Model ..

我看到了一个像jsFiddle的例子     http://jsfiddle.net/amorris/yNw3C/

现在我想要的是我的item值,格式为data

var data = [[48803, "DSK1", "", "02200220", "OPEN"]];

var item = [[1000,"Sony","Vaio",40000]];

1 个答案:

答案 0 :(得分:0)

试试这个:

var itemFormatted = [[
  item.Product,
  item.Brand,
  item.Model,
  item.Price
]];

// Now itemFormatted will be in the correct format

查看Working with Javascript objects了解详情。