Sitefinity backend give error

Posted by Community Admin on 04-Aug-2018 13:54

Sitefinity backend give error

All Replies

Posted by Community Admin on 15-Jul-2013 00:00

Hi,

I upgraded site from 4.4 to 5.0. I got couple of error.

first error is (when we edit page from sitefinity backeend) :
A required control was not found in the template for "~/SfCtrlPresentation/_SFCT_/aff8a7552655425344b6276cb732d3c76f6901bb/ListSettingsDesignerView.ascx". The control must be assignable from type "Telerik.Sitefinity.Web.UI.Fields.ChoiceField" and must have ID "socialOption".

Second Error is: Development site pick live site image path . I checked whole project, Database and config file but not find where it is defined.

Posted by Community Admin on 17-Jul-2013 00:00

Actually 5.0 version added some more control so we need to pass
one more parameter

 

<sfFields:ChoiceField
ID="socialOption" runat="server"

DataFieldName="CommonMasterDefinition.SocialShareOption"

CssClass="sfInlineWrapper"

DisplayMode="Write"

RenderChoicesAs="DropDown">

<Choices>

<sfFields:ChoiceItem Text="<%$ Resources:ContentResources,
LastPublishedOnTop %>" Value="PublicationDate DESC" />

<sfFields:ChoiceItem Text="<%$ Resources:ContentResources,
LastModifiedOnTop %>" Value="LastModified DESC" />

<sfFields:ChoiceItem Text="<%$ Resources:ContentResources, ByTitleAsc
%>" Value="Title ASC" />

<sfFields:ChoiceItem Text="<%$ Resources:ContentResources,
ByTitleDesc %>" Value="Title DESC" />

<sfFields:ChoiceItem Text="<%$ Resources:Labels, AsSetInAdvancedMode
%>" Value="custom" />

</Choices>

</sfFields:ChoiceField> 

Posted by Community Admin on 17-Jul-2013 00:00

Hi Manoj,

There has been a modification in the default template and I suppose you are using a custom one and so the error is received since Sitefinity cannot find the new control. You can get the default template from the SDK install folder in Content/Resources/WidgetTemplates.zip and then modify your custom template accordingly.  

Regards,
Kaloyan
Telerik

Do you want to have your say in the Sitefinity development roadmap? Do you want to know when a feature you requested is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items

This thread is closed