Can we hide checkbox(via CheckBoxCell) for special rows in the grid with InlineEdr?
Hi Dev,
Can we hide the special row's checkbox for grid which has one column with CheckBoxCell?
I have tried with the approach: cell.removeFromParent(), it works at the initial time, but my grid also has inline editing feature, after the editing.onCompleteEdit(....) , the checkbox of the current editing row was back again. :-/
Do you guys have any good approach? Could you please share.
Thanks in advance
Lori
Diable CheckBox in grid with special index
Code:
Hi. You can try codes:
getDisplay().getGridConfig().getView()
.getCell(3, 0).<XElement> cast()
.selectNode("input")
.setAttribute("disabled", "disabled");