Previous Row data Using KendoUi MVC Grid - Razor-C# -
i have grid (razor-c#) containing multiple columns/rows , there column named profit/loss .for every row need check previous row data profit/loss column , make calculation put values in current row profit/loss column update 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.contra...