我有一个Grid(Razor-c#)包含多个列/行,并且有一个名为赢利/亏损的列。对于每一行,我需要检查来自损益列的上一行数据并进行一些计算以将值放在当前行的盈利/亏损列
中更新
Html.Kendo().Grid(Model.accountHistory).Name("History").Columns(c =>
{
c.Bound(p => p.datetimecalculated).Format("{0:dd-MM-yyyy}");
c.Bound("").ClientTemplate("#= purchaseCriteria(data) #").Title(" ");
c.Bound(p => p.numcontracts).ClientTemplate("#= moneyFormat(numcontDFracts) #");
c.Bound(p => p.entityid);
c.Bound(p => p.leagueid);
c.Bound("")
.ClientTemplate("#= setSeasonYear(data) #")
.Sortable(false)
.Title("Year");
c.Bound("")
.ClientTemplate("#= setSeason(data) #")
.Sortable(false)
.Title("Season");
c.Bound(p => p.contractmeasurable);
c.Bound(p => p.price).ClientTemplate("#= moneyformat_at(DDEDE) #");
c.Bound(p => p.profitorloss).ClientTemplate("#= moneyFormat(profitorloss) #");
c.Bound(p => p.cashBalance).ClientTemplate("#= moneyFormat_diff(cashBalance) #");
}).DataSource(
d => d
.Ajax()
.ServerOperation(false)
)
.Pageable()
.Sortable()
.Resizable(resizing => resizing.Columns(true))
)