我使用KnockOut可观察数组来填充wijgrid。在wijgrid中,我想使用JavaScript对象作为某些单元格的值。不幸的是,似乎wijmo将对象转换为它自己模型中的字符串。
请look at this example。我想在表格中显示车主名称,但我还需要保留id(和模型数据结构)。
KnockOut ViewModel
var someData =[ { AssetCode: "Truck 5",
Owner: {
id: 1,
name: 'Pete'},
VIN: "T3SN2ADN",
Odo: 232109,
TimeStamp: "2012-07-21T09:13:12Z"},
{ AssetCode: "Car 8",
Owner: {
id: 3,
name: 'Brian'},
VIN: "COFAQ211",
Odo: 433299,
TimeStamp: "2012-07-17T15:34:54Z"}];
function ViewModel() {
var self = this;
self.gridData = ko.observableArray(someData);
}
ko.applyBindings(new ViewModel());
wijgrid
<table id="t1" data-bind="wijgrid: {
data: gridData,
columns: [
{ headerText: 'Asset Code', dataKey: 'AssetCode', dataType: 'string'},
{ headerText: 'Owner name', dataKey: 'Owner'}, <!-- PROBLEM LINE -->
{ headerText: 'VIN', dataKey: 'VIN', dataType: 'string' },
{ headerText: 'Odometer', dateKey: 'Odo', dataType: 'number' },
{ headerText: 'Time', dataKey: 'TimeStamp', dataType: 'datetime', dataFormatString: timePattern }
]}"></table>
我试过了:
{ headerText: 'Owner name', dataKey: 'Owner.name'}
{ headerText: 'Owner name', dataKey: 'Owner', cellFormatter: MY_FORMATTER}
我已经尝试了很多我能想到的东西来实现这一点,但是wijmo在这里看起来非常僵硬....
此外,当我在Chrome中调试时,似乎wijmo在任何格式化之前已将对象转换为其自己的模型中的String。这不是很有用..
编辑 - 我们正在使用Wijmo 2.3.9。到目前为止,我们已经遇到了Wijmo 3. *的性能问题,因此升级并不迫在眉睫。
答案 0 :(得分:0)
您可以通过处理cellStyleFormatter将自定义值设置为任何单元格(或在您的案例中显示车主名称):
cellStyleFormatter: function (args) {
//check for specific column and header row
if (args.column.headerText == "Owner name" && args.row.dataRowIndex >= 0) {
//set the custom value to cell i.e. vehicle owner name
args.$cell.text(args.row.data.Owner.name);
}
}
有关CellStyleFormatter的更多信息,请参阅:http://wijmo.com/wiki/index.php/Grid#cellStyleFormatter
答案 1 :(得分:0)
好的,事实证明你可以使用cellFormatter
将单元格值作为对象...为了实现这一点,不要指定dataKey
属性。这是修改后的代码:
<table id="t1" data-bind="wijgrid: {
data: gridData,
columns: [
{ headerText: 'Asset Code', dataKey: 'AssetCode', dataType: 'string'},
{ headerText: 'Owner name', cellFormatter: MY_FORMATTER}, <!-- FIXED LINE -->
{ headerText: 'VIN', dataKey: 'VIN', dataType: 'string' },
{ headerText: 'Odometer', dateKey: 'Odo', dataType: 'number' },
{ headerText: 'Time', dataKey: 'TimeStamp', dataType: 'datetime', dataFormatString: timePattern }
]}"></table>
以下JS:
var MY_FORMATTER = function(args) {
if (args.row.data && args.row.dataRowIndex >= 0) {
args.formattedValue = args.row.data.Owner.name;
}
};