Issue in deleting the Value from Property(Type String Array) on the node.
- May 19, 2017
- 5 replies
- 1226 views
Hi,
I want to delete the Value in the property that is type String Array. Deleting the value is working fine but I am having in issues in deleting the value.
Suppose I want to delete the value here:
Before deleting:
After deleting the value: 24.56.43.45 I am getting the comma at the end of the values and box getting not deleted along with the value. Please find the screenshots below.
After deleting:
Could anyone let me know, how to delete the entire value with box.
This is my code I used for deletion of value from form.
for(Value val:ipList){
log.info(val.getString() + " , ");
if(val !=null && val.getString().equals(deleteValue)){
ipList.remove(val);
break;
}
}
Please help me!!
Thanks,
Ratna Kumar.