Hi,
Using the RadGrid in Batch Editing mode and the EditType is set to row. I forbid edition in some columns with:
function BatchEditOpening(sender, args) { var col = args.get_columnUniqueName(); if (isNaN(col.substring(0,1))) { args.set_cancel(true); }}It works, but when I want to jump in another row, I am getting the following error:"The property "style" of an undefined or zero reference can not be retrieved." (I translate the error). When I comment this code, it work.
What am I doing wrong?
Thanks!