Hello Tony,
if one try to implement inline editing on ondblClickRow one could recive strange problem: the onSelectRow event will not fired if the user click on the disabled checkbox created by formatter:'checkbox'. See the demo. As a workaround one have to use beforeSelectRow instead of onSelectRow (see the fixed demo).
The problem make the line 2211 of the grid.base.js:
if (td.tagName == 'A' || ((td.tagName == 'INPUT' || td.tagName == 'TEXTAREA' || td.tagName == 'OPTION' || td.tagName == 'SELECT' ) && !scb) ) { return this; }
It seems to me in the line one should include additional test for td.disabled
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top