private void updateRowRecordVip(DynamicGridRow childRow, PatientInvasiveDeviceVipVo record) { if(childRow == null || record == null) return; InvasiveDeviceVIPScale recordVip = record.getVIPScale(); DynamicGridCell vipCell = childRow.getCells().newCell(getColumn(COLDEVICE), DynamicCellType.STRING); vipCell.setValue("VIP="+recordVip); childRow.setValue(record); }