<br />
var followEdit = true;<br />
if ($.isFunction($t.p.beforeEditCell)) {<br />
followEdit = $t.p.beforeEditCell($t.rows[iRow].id,nm,tmp,iRow,iCol);<br />
}<br />
if (followEdit !== false) {<br />
$(cc).html("").append(elc);<br />
window.setTimeout(function () { $(elc).focus();},0);<br />
$t.p.savedRow.push({id:iRow,ic:iCol,name:nm,v:tmp});<br />
$("input, select, textarea",cc).bind("keydown",function(e) {<br />
if (e.keyCode === 27) {$($t).restoreCell(iRow,iCol);} //ESC<br />
if (e.keyCode === 13) {$($t).saveCell(iRow,iCol);}//Enter<br />
if (e.keyCode == 9) {$($t).nextCell(iRow,iCol);} //Tab<br />
e.stopPropagation();<br />
});<br />
if ($.isFunction($t.p.afterEditCell)) {<br />
$t.p.afterEditCell($t.rows[iRow].id,nm,tmp,iRow,iCol);<br />
}<br />
}<br />
<br />