Fixes up pre-value formatted data so it doesn't include ID in the value since this confuses things.

This commit is contained in:
Shannon
2013-08-28 18:52:00 +10:00
parent 68b337729b
commit 4b4fc037dd
13 changed files with 29 additions and 24 deletions

View File

@@ -36,13 +36,13 @@ namespace Umbraco.Web.PropertyEditors
{
public DropDownMultiplePreValueEditor()
{
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
{
Key = "multiple",
Name = "multiple",
View = "hidden"
View = "hidden",
HideLabel = true
});
}