Hello All,
Thanks in advance.
I have a jqxgrid in which I have dropdowns as columns editor.
Say I have 5 visible rows at one time and in this top three rows are getting edited perfectly.
For two rows edit is not happening, I searched and found that “this.editcell” for these two rows is coming empty.
Can some tell me why is it happening.
if (this.editable && this.editcell && this.editcell.column == this.columns.records[cindex].datafield && this.editcell.row == this.getboundindex(renderrow)) {
if (this.editcell.editor) {
rowheight = Math.max(rowheight, this.editcell.editor.height());
continue;
}
}
Thanks again