I already delete 1 notice data. And try again.
The value is before select key that deleted.
Maybe this is error or i don’t use right way.
I want to check the unselected row state.
please check my code.
[Code]
// noticeList is dhx.Grid Object
var notices = noticeList.selection.getCells();
var notice = noticeList.selection.getCell();
if(notices.length == 0) {
dhx.alert({
header: "Error",
text : "please select notice to delete ",
buttonsAlignment : "center",
buttons : ["OK"]
});
} else {
//delete process
}