BackGrid を使用して、非表示の列から値を構成するフォーマッタを介してカスタム セルを構築することは可能ですか?
var grid = new Backgrid.Grid({
columns: [
{
name:"half_value_1",
cell:"string",
rendered: false
},
{
name:"half_value_2",
cell:"string",
rendered: false
},
{
name: "composite",
cell: "string",
formatter: _.extend({}, Backgrid.CellFormatter.prototype, {
fromRaw: function (half_value_1, half_value_2) {
return half_value_1 + '/' + half_value_2;
}
})
}],
collection: col
});
関数内でhalf_value_1
andを取得できますか?half_value_2
fromRaw