Hey everyone - trying to migrate my MediaColourPic...
# package-development
o
Hey everyone - trying to migrate my MediaColourPicker to V14 and in my old package I had
Copy code
IEnumerable<IProperty> properties = media
        .GetPropertiesByEditor(customPropertyAlias)
        .ToList();
But when I try and use
GetPropertiesByEditor()
in v14, I never find the field on media. I've added a custom property to media and if I hover over
media
I can see my Property but only the Alias which can be set to anything the user wishes which why I wanted to use byEditor name because I can control that. Any ideas?