Hi!
in grid.base.js, line 561.
ts.p.afterInsertRow.call(ts, rid, rd, xmlr)
in grid.base.js, line 667
ts.p.afterInsertRow.call(ts, idr, rd, cur)
BUT
in grid.base.js, line 1923
t.p.afterInsertRow(t, row, id, data)
I think the 1923 line should use the “.call” method to fire the event. Because for the two first cases described, the ts parameter is used to define the context of the call. In the last case, the parameter t is passed as a parameter to the method.
So, in the first two cases, we get the “id” as the first parameter and in the last one, we get the “t” object as the parameter.
Thanks
VB
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top