Hi,
Try doing the following in your callbacks CollectionControl_ItemAdded and CollectionControl_ItemDeleted :
Try doing the following in your callbacks CollectionControl_ItemAdded and CollectionControl_ItemDeleted :
var col = sender as CollectionControl;
if( col != null )
{
col.PersistChanges();
}
It should save the data.