Hi all,
I'm new on the K2 world and I have a problem with SmartObjects and editing data programmatically.
When I want clear the field value of a SmartObject, so set a NULL value or an empty string, it does not seem to work: the field is not cleared.
I've tried with these three ways:
mySmo.Properties["fieldName"].Clear();
mySmo.Properties["fieldName"].Value = string.Empty;
mySmo.Properties["fieldName"].Value = null;
Can someone help me ?
Thank you.