I need to set edit value in list grid from existing value to null in numeric field. Edits come from external component and must be reflected on the grid. Filed is not required so it can have null value.
I was trying the following:
1)
setEditValue(rowNum, (Integer)null) -- throws an exception
2)
HashMap map = new HashMap<>();
map .put("fieldName", null);
listGrid.setEditValues(rowNum, map); -- look like this is working the same as clearEditValue(rowNum, "fieldName")
I'm using SmartGWT 6.0p
I was trying the following:
1)
setEditValue(rowNum, (Integer)null) -- throws an exception
2)
HashMap map = new HashMap<>();
map .put("fieldName", null);
listGrid.setEditValues(rowNum, map); -- look like this is working the same as clearEditValue(rowNum, "fieldName")
I'm using SmartGWT 6.0p
Comment