Fixes some issues with pre-values with the previous changes made to include the IDs of the pre-values, needed to ensure they are formatted incoming/outgoing properly so the id isn't included.

This commit is contained in:
Shannon
2013-08-28 14:45:33 +10:00
parent cb368b4335
commit 79ab84a793
14 changed files with 114 additions and 41 deletions

View File

@@ -36,15 +36,14 @@ namespace Umbraco.Web.PropertyEditors
{
public DropDownMultiplePreValueEditor()
{
var fields = CreatePreValueFields();
Fields.AddRange(CreatePreValueFields());
//add the multiple field, we'll make it hidden so it is not seen in the pre-value editor
fields.Add(new PreValueField
Fields.Add(new PreValueField
{
Key = "multiple",
Name = "multiple",
View = "hidden"
});
Fields = fields;
});
}
/// <summary>