У каждого есть представление о том, как создавать вычисляемые столбцы.Например, у меня есть сетка типа:
$("#myProductGrid").jqGrid({
url:DUMMY_URL,
dataType:"local",
width:285,
colNames:['Item', 'Unit Price', 'Qty', 'Discount', 'Sale Price'],
colModel:[
{name:'description', index:'description', summaryType:'count'},
{name:'unit_price', index:'unit_price', align:"right", sorttype:"float"},
{name:'quantity', index:'quantity', formatter:'number', summaryType:'sum'},
{name:'item_id', index:'item_id', hidden:true},
{name:'discount_percent', index:'discount_percent', align:"right", sorttype:"float"},
{name:'sale_price', index:'sale_price', align:"right", sorttype:"float", summaryType:'sum'},
],
...
});
Я бы хотел, чтобы в столбце "цена продажи" отображалось quantity*(unit_price - (unit_price*discount))
Заранее спасибо ....