Hello Tony,
in some seldom situation the postIt() of editGridRow() generate new row id with the following line of code
if(!ret[2]) { ret[2] = (parseInt($t.p.records,10)+1)+""; }
which is not quite correct.
1) $t.p.records is already a Number and one don't need to make parseInt($t.p.records,10)
2) if one add the row after deliting some previously added lines with the small id number, one can receive id duplication
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top