Don't miss out Virtual Happy Hour this Friday (April 26).

Try our conversational search powered by Generative AI!

Differentiating click

Vote:
 

Hi,

I have a custom property which is deriving from 'PropertyString'. property cs file how can i differentiate if the editor is accessing this property from Dynamic properties or from page edit mode.

I have one more custom property which is deriving from 'PropertyLongString' there I am differentiating as below.

 

 private bool IsSettingsProperty
        {
            get
            {
                return EditorToolOptions == ~EPiServer.Editor.EditorToolOption.All;
            }
        }

Based on what the above method returns I am differentiating. I can't use the above when deriving from 'PropertyString'. Please suggest

#44132
Oct 01, 2010 12:18
Vote:
 

PropertyData has a property named IsDynamicProperty so you can check that. However, I don't know if it is set correctly when a new page is being created, you'll have to try it. Good luck!

#44133
Oct 01, 2010 12:37
Vote:
 

While fetching the values I am making use of IsDynamicProperty property. But the data saved needs to be showed in a different way under dynamic properites and edit mode. Fot this I need to differetiate in a different way.

#44136
Oct 01, 2010 13:14
Vote:
 

I don't see how this is a problem, but perhaps I'm not getting the full picture. Your IPropertyControl implementation has access to it's connected PropertyData which ahs the IsDynamicProperty property. So you should easily be able to render the control differently depending on the value of this property.

#44138
Oct 01, 2010 13:38
Vote:
 

For a page my custom property is added as a pagetype property as well as a dynamic property. This property is bascially a dropdown with multi select. Now the editor sets few values under dynamic properties and few values under pagetype property in edit mode. Now in edit mode while editing the page I have to show the values set in dynamic property as disabled. I have the below method for that.

 

if (IsInheritedLocation(location.PageLink.ID))
        {
                    li.Attributes.Add("disabled", "true");
        }

 

Problem is, now if the editor checks under dynamic properties even there the option will be disabled. SO int he above method before applying "disabled attribute" I will have to check where this property id being rendered.

#44139
Oct 01, 2010 13:53
Vote:
 

How do you read the dynamic property value from within the IPropertyControl? I mean, if you are editing a dynamic property this would be the IPropertyControl.PropertyData, but if you are editing a page property that would be the page property and the dynamic property value defined for the page is nowhere to be found?

#44140
Oct 01, 2010 14:41
Vote:
 

In the associated Control file I get page property and from the main control I get the dynamic property value.

I have the below code in associated Control.

var p = EPiServer.DataFactory.Instance.GetPage(currentPageLink).Property["dynamicpropertyname"];
            if (p != null && p.IsDynamicProperty)
                l = (p as PropertyMultipleSelection).GetSelectedLocationIDs();

 

GetSelectedLocationIDs() just takes the values from IPropertyControl. This method I have in main control.

I solved this issue by deriving from 'PropertyLongString' now.

#44157
Oct 04, 2010 10:42
* You are NOT allowed to include any hyperlinks in the post because your account hasn't associated to your company. User profile should be updated.