Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
AI OnAI Off
Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
public enum PropertySubDataType {Boolean, String, PageReference, etc..}; public class PropertySubData { private string name; private string displayName; private PropertySubDataType type; public PropertySubData(string propertyName, string propertyDisplayName, PropertySubDataType propertyType) { this.name = propertyName; this.displayName = propertyDisplayName; this.type = propertyType; } #ReadOnly properties of private properties }
This is just an example, the point is that I'd like the possibility to modify the properties of a property shown in admin to get ride of all workarounds with dynamic properties or values put in web.config as I prefer. I also belive this would benefit some of the default properties ex. PropertyPageReference that would much benefit form having a default starting point (PageReference). Regards, Fredrik Lysholm