Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
Hi David,
Thank you, but the only areas available are not very well suitable for my case. I would like to have that component as a tab in the property edit interface. In the similar way as it was in episrever 6. Now it seems that such ability is lost.
You might want to take your chance with a property in a separate tab, where you would render an iframe. See the example in alloy tech templates, StringList, except that instead of rendering a textbox, you would render an iframe.
I don't think this is a correct approach, but if you really need it, it might be a workaround.
Wouldn't a Edit widget be what you are looking for?
http://tedgustaf.com/blog/2014/6/create-an-episerver-widget-for-edit-mode/
Hello,
Edit widget would work, but we already have an user control writen, so rewriting in it javascript would be a big task.
We settled on additional view for now as described here http://world.episerver.com/Blogs/Duong-Nguyen/Dates/2013/12/Custom-views-and-plugin-areas-in-EPiServer-75/ . It can easily take a user control.
Maybe it's possible to use user control as an editor for a property?
Giedrius
Hi, I thought you didn't want to place it in assets. If this is an option for you, then you simply create aspx out of your ascx and inherit from EditContentWebFormsBase along with the following decoration:
[IFrameComponent(Url = "modules/Plugin.aspx",
ReloadOnContextChange = true,
PlugInAreas = "/episerver/cms/assets",
Categories = "cms",
MinHeight = 400,
MaxHeight = 650,
SortOrder = 201,
Title = "plugin title",
Description = "plugin description",
IsAvailableForUserSelection = true
)]
public partial class Plugin : EditContentWebFormsBase
You can also specify that the masterpage is set on preinit:
protected override bool SetMasterPageOnPreInit
{
get
{
return true;
}
}
Then, you simply c/p ascx to
You can get the current content by accessing CurrentContent.
Hi,
Yes i don't like that it is in assets and i would like to have it as an tab in the edit interface. I also need to use existing user control without much reworking. But it seems such use case is not supported, which is sad.
However, we can add that control as addition edit view which is sufficient for my case.
Hello Giedrius
I am not sure if you have worked around your problem but thought this post may be helpful:
Hello,
I have an existing Episerver 6 site which is beeing migrated to Episerver 7.5. The site has a plugin which is displayed as a tab in the edit mode in episerver 6.
It is decorated with [GuiPlugIn(DisplayName = "..", Description = "", Area = PlugInArea.EditPanel,...]
I managed to rewrite it to
[IFrameComponent(PlugInAreas = PlugInArea.Assets, ...]
However I only can it add to the dashboard or to the assets pane. I can't find Any way to add it to the edit panel. It is possible to do that?