page-editor

Sitecore IFrame displays Page Editor ribbon

孤人 提交于 2019-12-11 19:12:43
问题 I am working on integrating an iframe to a Sitecore template. I have created the ASPX page and added that to the iframe in Sitecore template. (e.g. /sitecore/content/Custom Editors/SampleIFrameEditor ) It works fine, I can see my ASPX page gets rendered in the iframe control. Only issue is that it shows the "Page Editor" ribbon control on top (Home Advanced Expereience...), which I do not need to be displayed. (It's like I opened it up in Page Editor.) How can I hide "Page Editor" options

Sitecore Page Editor Publishing items related to content

时光怂恿深爱的人放手 提交于 2019-12-10 16:46:43
问题 I have a "Product Page",Product page maps to "ProductPage" Sitecore item. Website/Pages/ProductPage. I have a text area in that page with page editor, which loads text from "Product Example Text" Sitecore item's "Description" text from Web database. (Sitecore.../CommonText/Product Example Text) In my ascx file, mark up is pretty straigh forwad, <sc:FieldRenderer ID="FieldRenderer1" runat="server" /> Codebehind, FieldRenderer1.Item = //"Product Example Text" Sitecore item FieldRenderer1

sitecore page editor change position actually deleting sublayout added on an item(Page)

谁都会走 提交于 2019-12-08 07:18:35
问题 I have a layout with two place holders leftColumn and rightColumn. For an item i am adding multiple sublayouts for leftcolumn and multiple sublayouts for rightcolumn. Now in page editor when i am trying to change position using "Change Position" button in toolbar and move content to another location, content is getting moved to my new location as desired. But when i click Save button on Ribbon, it is actually deleting moved content from presentation itself. I am not sure why it is behaving

sitecore page editor change position actually deleting sublayout added on an item(Page)

混江龙づ霸主 提交于 2019-12-07 11:40:37
I have a layout with two place holders leftColumn and rightColumn. For an item i am adding multiple sublayouts for leftcolumn and multiple sublayouts for rightcolumn. Now in page editor when i am trying to change position using "Change Position" button in toolbar and move content to another location, content is getting moved to my new location as desired. But when i click Save button on Ribbon, it is actually deleting moved content from presentation itself. I am not sure why it is behaving like this. we are using Sitecore 6.4 We opened a ticket with Sitecore and found out that this is an

Has anyone run into Sitecore removing JavaScript from the page editor?

时光怂恿深爱的人放手 提交于 2019-12-06 01:35:43
问题 I've been working on a custom page in Sitecore over the holidays, and I've noticed an issue where Sitecore removes JavaScript lines from the editor. Here's an overview of my current scenario: I add Javascript to the page. I save, check in, and publish. Changes are there, and everything is working. I work on it later and those changes are no longer there. I'm the only one who's edited this page, and it is publishing the current/correct version. It doesn't matter if I add the script through the

Has anyone run into Sitecore removing JavaScript from the page editor?

落爺英雄遲暮 提交于 2019-12-04 05:45:42
I've been working on a custom page in Sitecore over the holidays, and I've noticed an issue where Sitecore removes JavaScript lines from the editor. Here's an overview of my current scenario: I add Javascript to the page. I save, check in, and publish. Changes are there, and everything is working. I work on it later and those changes are no longer there. I'm the only one who's edited this page, and it is publishing the current/correct version. It doesn't matter if I add the script through the "Show Editor" or "Edit HTML" features of the content editor. It only removes the JavaScript though;

Sitecore page editor - how to extend page editor item editing panel

谁说胖子不能爱 提交于 2019-12-04 03:47:15
问题 Need to add "publish" feature to the page editor, item editing section. (Under the "More" section would be ideal). How can I do this? 回答1: First you need to create a command class. The simplest version would be: using System; using Sitecore.Shell.Applications.WebEdit.Commands; using Sitecore.Shell.Framework; using Sitecore.Shell.Framework.Commands; namespace my.assembly.namespace { [Serializable] public class Publish : WebEditCommand { public override void Execute(CommandContext context) { if