SharePoint 2013 RTE Custom Styles lost on Team Site Wiki Page after you select a control in the editor

I have a weird issue in that I have custom RTE styles working fine in publishing pages, but in the team site wiki page, when you first go into edit mode you see your styles, but if you highlight some text, select say the font drop down to expand it and then
select it again to contract it (i.e. without selecting a font), all of a sudden all of the custom styles are lost and everything reverts back to the default RTE styles.
In my master page I am running the following script to force my styles to be loaded.
ExecuteOrDelayUntilScriptLoaded(
function() {
     $(
"div[RteRedirect]").each(function()
varid = $(this).attr("RteRedirect"),
         editSettings = $(
"#"+ id);
if(editSettings.length > 0 &&
editSettings[0].PrefixStyleSheet != 'custom-rte')
             editSettings[0][
'PrefixStyleSheet'] =
'custom-rte';
             editSettings[0][
'StyleSheet'] =
'\u002f_layouts\u002f15\u002fFiveP\u002frteStyles.css';
             RTE.Canvas.fixRegion(id,
false);
"sp.ribbon.js");
See below screenshots (note Heading 2 is orange).
After you collapse the font menu, you see that the orange H2 has disappeared, and selecting the font drop down again now shows all of the default SharePoint RTE styles.
I haven't been able to capture the Event that is being called using the debugger. Any ideas how to fix this?
Alan Coulter.

Hi,
For this issue, I'm trying to involve someone familiar with this topic to further look at it.
Thanks,
Qiao
Forum Support
Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
[email protected]
Qiao Wei
TechNet Community Support

Similar Messages

  • How to add a reference to a custom stylesheet from a Team Site wiki page

    We have a Team Site (no publishing feature enabled).  We have several wiki pages where we inserted custom html content via "edit source".  This custom content has some divs defined in it to which we want to apply some styling.  We
    have styles.css saved in Style Library.  How do I reference this style.css from the wiki page?  I don't want to put the style definition on the wiki page itself since the same style will be shared by multiple pages.
    thanks,

    There are a variety of customization options available for BEA Workshop. Through metadata you can define renderings for custom tags, tag appearance in the tag libraries view, customize the tag editors, and much more.
    Information about customization can be found at the following link: http://workshopstudio.bea.com/docs/tlei.htm
    Adding custom tag documention to the Tag Libraries view is not currently a configuration option but would be a useful addition. I will file an enchancement request for this functionality.

  • Forms based authentication in sharepoint 2013 using custom membership provider

    I am developing  FBA  for SP2013 using custom membership provider using the following link 
    http://benredl.wordpress.com/2012/10/03/creating-forms-based-authentication-and-user-profiles-in-sharepoint-2013-using-custom-membership-and-role-providers-and-a-custom-user-profile-synchronization-utility/
    the feature i am trying to develop is that the user is created using a homegrown asp.net  application which uses sql server 
    and then When that user goes to SP2013 he should be able to login with the username and password created using the homegrown asp.net application 
    my questions are following 
    If I follow the article in the link should i be taking the assembly(dll) and deploying it to GAC or will VS2013 automatically do it
    Do I have to implement  FindUserByEmail and FindUserByName methods ?
    if the connectionstring for an asp.net application is in the web.config file  where would the connection for the sqlserver go if this application is for SharePoint 
    TIA

    Hi TIA,
    try this it contains the code for you and it is ready
    http://sharepoint2013fba.codeplex.com/
    Kind Regards, John Naguib Technical Consultant/Architect MCITP, MCPD, MCTS, MCT, TOGAF 9 Foundation

  • Team Site Master Page issue

    I have the same issue in SharePoint 2013.
    The following link is for SharePoint 2010.
    Site Master Page is ignored on team site with publishing feature enabled
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/d84dfe2d-4ae2-4aa7-a1be-541280d8b465/site-master-page-is-ignored-on-team-site-with-publishing-feature-enabled?forum=sharepointcustomizationprevious

    Master Page changes in the team site only when System Master Page is changed. But this will effect the site administration.

  • SharePoint 2013 App Custom Action in Wiki Page

    Hi
    I am trying to create a SharePoint 2013 App that also has a  Custom Action that has to be visible in Pages tab. Code below
    <?xml version="1.0" encoding="utf-8"?>
    <Elements xmlns="http://schemas.microsoft.com/sharepoint/">
    <CustomAction
    Id="COB.SharePoint.Ribbon.NewGroupInExistingTab"
    Location="CommandUI.Ribbon" >
    <CommandUIExtension>
    <CommandUIDefinitions>
    <CommandUIDefinition Location="Ribbon.Templates._children">
    <GroupTemplate Id="Ribbon.Templates.NewGroupInExistingTab.OneLargeExample">
    <Layout Title="NewGroupInExistingTabOneLarge" LayoutTitle="NewGroupInExistingTabOneLarge">
    <Section Alignment="Top" Type="OneRow">
    <Row>
    <ControlRef DisplayMode="Large" TemplateAlias="Button1" />
    </Row>
    </Section>
    </Layout>
    </GroupTemplate>
    </CommandUIDefinition>
    <CommandUIDefinition Location="Ribbon.WikiPageTab.Scaling._children">
    <MaxSize
    Id="COB.SharePoint.Ribbon.NewGroupInExistingTab.NotificationGroup.MaxSize"
    Sequence="15"
    GroupId="COB.SharePoint.Ribbon.NewGroupInExistingTab.NotificationGroup"
    Size="NewGroupInExistingTabOneLarge" />
    </CommandUIDefinition>
    <CommandUIDefinition Location="Ribbon.WikiPageTab.Groups._children">
    <Group
    Id="COB.SharePoint.Ribbon.NewGroupInExistingTab.NotificationGroup"
    Sequence="15"
    Description="Custome Actions"
    Title="Oltiva DW"
    Template="Ribbon.Templates.NewGroupInExistingTab.OneLargeExample">
    <Controls Id="COB.SharePoint.Ribbon.NewGroupInExistingTab.NotificationGroup.Controls">
    <Button
    Id="COB.SharePoint.Ribbon.NewGroupInExistingTab.NotificationGroup.ContentSources"
    Command="COB.NewGroupInExistingTab.Command.Notify"
    Sequence="10"
    Image16by16="/_layouts/images/NoteBoard_16x16.png"
    Image32by32="/_layouts/images/NoteBoard_32x32.png"
    Description="Uses the notification area to display a message."
    LabelText="Content Sources"
    TemplateAlias="Button1"/>
    </Controls>
    </Group>
    </CommandUIDefinition>
    </CommandUIDefinitions>
    <CommandUIHandlers>
    <CommandUIHandler Command="COB.NewGroupInExistingTab.Command.Notify"
    CommandAction="~remoteAppUrl/Pages/Default.aspx?{StandardTokens}"
    />
    </CommandUIHandlers>
    </CustomAction>
    </Elements>
    The above code works fine, but I want the Custom Action to Open in a new Pop up box, like 
    javascript:SP.UI.ModalDialog.showModalDialog({ url: 'www.google.com', title: 'Default' });
    The movement I change the CommandAction to JavaScript, the app breaks, if I remove the ~remoteAppUrl/Pages/.... the app does not work, it does not apper in the site content.  and in appcatalog it shows wrong version number and says Valid App package
    as no.  what am I doing wrong.
    Regards, Vikram

    Hi Carl,
    As a security policy, a new customer cannot upload images and links. You can try to add links as text and upload your images to Onedrive and share it temporarily.
    Thanks,
    Eric
    Forum Support
    Please remember to mark the replies as answers
    if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]
    Eric Tao
    TechNet Community Support

  • SharePoint 2013 Media Player using UNC path directly without using a Website in IIS (either out of the box or custom player using javascript only)

    Hi,
    There isn't much info on this and I am hoping its possible.
    I have come across the following article which explains how we can setup SharePoint 2013 Asset Library using video links using a website in IIS that is mapped to a UNC path.
    http://stevemannspath.blogspot.com.au/2012/12/sharepoint-2013-videos-in-sharepoint.html
    This is great. However we have an issue where I work and I need somehow to get SharePoint mediaplayer to point to a video directly using the UNC path like :- \\WINSP13\TempVideos\NTV_Carr_Indig.wmv without the use of a website in IIS.
    I understand that we won't be able to stream the video then thats ok.
    when trying to add a video link to an asset library using the UNC path, we get the following error: We don't support
    playing a video of that format from a file share.
    Is there a way or a workaround to do this? we are using only javascript to do this (AngularJS or any custom Javascript player such as MediaElement)
    Thanks
    Kind Regards,
    Will

    From a SharePoint architecture perspective, this is a BAD design, since you are rerouting the communications (from the client to the UNC) away from and outside of SharePoint... as a result, SP cannot provide any level of guarantee about the ability for videos
    to play on the client machine.
    Secondarily, I'm not sure that the browser will let you pull resources from such different locations (doing so has been the root of several type of attacks, such as "Cross Site Scripting").
    That said (and assuming the browser lets you), you can always use JS to handle creating the video player HTML and setting the UNC location... instead of using a site asset library to store the links, just create a list for the videos
    Scott Brickey
    MCTS, MCPD, MCITP
    www.sbrickey.com
    Strategic Data Systems - for all your SharePoint needs

  • SharePoint 2013 Workflow Custom Task Form

    Hi..I am working on SharePoint 2013 workflow using visual studio 2013. In this workflow, i am creating tasks and i want to make a custom task form.
    My workflow contains serial tasks. When each user approve, he should specify the next user.
    I have added a custom content type and assigned it to my tasks but all i can do is taking the outcome from the task form as integers.
    I want the user to approve and choose another user so i can assign another task to him.
    thanks..

    I believe what you're looking for is the Collect Data from User function, however I don't see that anywhere in a 2013 workflow. This did exist in 2010 workflows.
    What you can do is to change this to an InfoPath form and run the workflow that way, assuming there isn't anything you absolutely need Visual Studio for.
    Andy Wessendorf SharePoint Developer II | Rackspace [email protected]

  • Sharepoint 2013 pass custom form data

    I am asking the question since this is my first project working with Sharepoint 2013.
    Here is the project requirements:
    1. I created a custom list for users to enter data in a custom form that is modified by Infopath 2013.
    2. Once the user clicks the 'save' button on the custom form, the workflow is started and the workflow will be waiting for certain users to accept or reject the form.
    3. If the form is rejected the user needs to make modifications and the form can be  resubmited.
    4. Once the custom form is accepted, the user will be required to submit bimonthly updates on the progress of the request they made based upon the start and end dates submitted on the original form.
    5. After the custom form as been accepted, a master/detail will be setup with the master being the accepted form and the bimonthly updates will be details.
    Here are my question:
     I want to pass the information from the accepted form to the master/detail form that will do the following 'Once the custom form is accepted, the user will be required to submit bimonthly updates on the progress of the request they made based upon the
    start and end dates submitted on the original form'. Would you tell me how to pass the information from the accepted custom form to being the 'master' part of the master/detail form I just mentioned?
    Is this a good solution? If you how would you change the design and how would you make these coding changes and what would the design change be?

    Hi Scampsman,
    Based on your description, my understanding is that you want to pass data from one InfoPath form to another InfoPath form in SharePoint.
    To achieve this goal, we can write code in the details form with FormEvents_Loading to capture and display the incoming parameters passed from the original form.
    Please refer to the link below for more detail steps(same for InfoPath 2013):
    http://sharepointbeeeye.com/infopath-2010-passing-data-between-forms/
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • SharePoint 2013 Online : Custom List view xslt webpart UI vs List View WebPart UI with search ? How to create a xslt list view webpart same UI as list View webpart ???

    I have created a xslt list view webpart but I does not have UI as SharePoint 2013 list view UI.
    how I can have it.
    Ahsan Ranjha

    Hi Ahsan,
    According to your description, my understanding is that the UI is different between XSLT web part and List View web part.
    Per my knowledge, the List View web part is a kind of the XSLT list view web part which uses XSLT to display data on the page.
    http://sharepoint-videos.com/list-view-and-data-view-web-parts/
    How did you add the XSLT web part and the List View web part?
    Could you please provide a screenshot of the two web parts?
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • SharePoint 2013 Error Exception from HRESULT: 0x80131904 Some sites are working while others give this error

    I can access some of the sites,  but others are throwing this error code... not sure why it appears that it is every other site almost...
    I can actually get this error, at a top level site, go to a sub-site and that site is displayed.
    Any ideas on how to resolve this error..
    the Central Admin site is down also, just a blank page is returned. no error message...
     we were able to add extra space on the VM brought back the sites but now the Central Admin site throws  a 404 not found...

    Hi ,
    According to your description, my understanding is that after adding extra space on the SQL server VM, the error 0x80131904 disappeared, but the CA got 404 error. Is it right?
    Afer adding extra space on SQL server, make sure the SQL server is online and run SharePoint 2013 Products Configuration Wizards, when running, select “don’t disconnect from the server farm”.
    Check whether this issue occurred on other machines. If CA is working from other computer and only server is facing this issue then you need to create diableloopbackcheck registry at HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa. The value should
    be 1 .
    Please go to IIS->the server->ISAPI and CGI Restrictions, check whether there are four 'Microsoft SharePoint Foundation 2010' entries. If not, you need to create the following entries with the name as 'Microsoft SharePoint Foundation 2010':
                     C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\isapi\_vti_aut\author.dll
                     C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\isapi\_vti_adm\admin.dll
                     C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\isapi\shtml.dll
                     C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\isapi\owssvr.dll
    Check Allow extension path of execute to allow the restriction to run automatically.
    If this issue still exists, please check the log file to find more information about this issue. The path of the log file is : C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\LOGS.
    Or you can use Event Viewer(Start->Run->event viewer) to find the log.
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • SharePoint 2013 SIP Address has no value in site collection for users

    I have SharePoint 2013 site collection and I gave access to particular user design access. When I check the user information i do not have any value of that users SIP field. In that domain I am having exchange mail server and LYNC 2010 server. Please help
    me on this issue.

    SIP value exist in AD.
    i check user profile service and edit for user, in that SIP value is exists.
    But when i go to Site Action - > site setting -> People and group
    then i am not able to find SIP value for the users.
    when i delete user from the site users and re-add user then SIP value is coming. but that's nit feasible because i have around 150 sites.
    Please give me solution or should i make the tool which will update user SIP value for all the sites?
    Coz of SIP value when i add site users web part then status is not showing for the user in the web parts.

  • How do you select all paragraphs using the same style in Pages 5.2?

    I'm trying to find how to select all paragraphs using the same style in Pages 5.2 without any success.  I writing a book and I need to able to adjust all my paragraph styles globally.  I see how upgrade my paragraph style when I do something new, but not how to revert back to the orginal template.
    For example, in my custom template for my book I have 12 font for a review questions paragraph style.  I changed the font size for all this paragraph style to 18 font.  Now I want to change it back to size 12 font.  But I have this paragraph style at the top and bottom of my document.  How to I select all of my review questions style so I can make the font change to all at the same time? 
    I just upgrade to Pages 5.2 from Pages '09. 
    Thanks for the help,
    Rob

    The Pages User Guide might help here.
    Better to post your topic in the Pages designated community > Pages: iWork: Apple Support Communities

  • Hi there, can anyone tell me how to make make Garageband ignore HDMI as an audio output-device on a 2013 Mac Mini? Now it keeps on prompting me: Do you want want to use the HDMI device (monitor without audio) for audio output? Thanks in advance, Grtz T.

    Hi there,
    Can anyone tell me how to make make Garageband ignore HDMI as an audio output-device on a 2013 Mac mini i7 using an Apogee jam as an input for bass and a Behringer USB DAC with RCA audio output? Now it keeps on prompting me: Do you want want to use the HDMI device (monitor without audio) for audio output? I'm also suffering massive audio lag issues with the Apogee jam after waking the mini from sleepmode, wich pretty much renders it useless.
    Thanks in advance,
    Grtz T.

    I think the easiest way to do this is to have the EyeTV app running in one user account and sent via HDMI to the TV, and use a separate user account for Screen Sharing. Both logins can be active at the same time and with Lion you can connect via screen sharing to which ever login you need.
    With regards to the Mac video resolution changing, when it is not the current input on your AV receiver. This is 'normal', if the Mac sees no signal it drops down the a lower level. What you need is to buy a HDMI Detective Plus which tricks the Mac in to always seeing a signal and hence it will not drop down the resolution. See http://www.gefen.com/kvm/dproduct.jsp?prod_id=8005
    The Mac mini does have an IR receiver. This can be used with the EyeTV app, iTunes, and similar. Yes I believe EyeTV would run for prolonged periods quite happily, it is has been around for a long time and had most of the rough edges polished off. However one issue you will have to deal with is that it does not automatically update its program guide data. For this you might have to write or modify an AppleScript. Elgato support or their user forums will be a lot of help.
    You can set EyeTV to convert recordings to an iTunes (Apple TV) compatible format and then delete them from EyeTV.
    The HDMI Detective should solve your handshaking problems.

  • SharePoint 2013 - SPD Custom Workflow keeps sending multiple emails for a single Task

    I have a workflow triggering on List item created only. There are multiple stages in the work flow and in each stage a single task is assigned to a group of people. Currently group is only having one user i.e. my own test user with a valid email address.
    Workflow was running fine for first 5 runs but now it keeps sending multiple emails for each task multiple times and runs very slow. I have only single workflow in development server with 24GB RAM.
    Enabling the Workflow log in Event viewer does not show any error or warnings. The only clue I see is WorkFlowManager Database table "DebugTrace" having multiple entries showing that WF is trying to send same email multiple times with failed attempts,
    but in reality emails are being delivered as well.
    http://server/site/_vti_bin/client.svc/sp.utilities.utility.SendEmail Retry sending email in xx.xx.xx Status: HTTPRetrying
    http://server/site/_vti_bin/client.svc/sp.utilities.utility.SendEmail Retry sending email in xx.xx.xx  Status: HTTPFailed
    I could not get the exact phrase as I don't have direct access to development machine at work.
    Any help or guidance will be highly appreciated.

    Yes, I have on-premise SP site, and here is the actual log I see in DebugTraces table.
    Message              Level     Name    Category
    Attempt 1 of the HTTP request to 'http://site/collection/_vti_bin/client.svc/sp.utilities.utility.SendEmail' failed with response '<Exception.
    No Status Code>'.              2              HttpRequestFailed          Http
    Attempt 2 of the HTTP request to 'http://site/collection/_vti_bin/client.svc/sp.utilities.utility.SendEmail' will be made in 00:00:06.            
    2              HttpRequestRetrying     Http
    Attempt 2 of the HTTP request to 'http://site/collection/_vti_bin/client.svc/sp.utilities.utility.SendEmail' failed with response '<Exception.
    No Status Code>'.              2              HttpRequestFailed          Http
    Attempt 3 of the HTTP request to 'http://site/collection/_vti_bin/client.svc/sp.utilities.utility.SendEmail' will be made in 00:00:07.            
    2              HttpRequestRetrying     Http
    Attempt 3 of the HTTP request to 'http://site/collection/_vti_bin/client.svc/sp.utilities.utility.SendEmail' failed with response '<Exception.
    No Status Code>'.              2              HttpRequestFailed          Http
    Attempt 4 of the HTTP request to 'http://site/collection/_vti_bin/client.svc/sp.utilities.utility.SendEmail' will be made in 00:00:09.            
    2              HttpRequestRetrying     Http
    Attempt 4 of the HTTP request to 'http://site/collection/_vti_bin/client.svc/sp.utilities.utility.SendEmail' failed with response '<Exception.
    No Status Code>'.              2              HttpRequestFailed          Http
    Attempt 5 of the HTTP request to 'http://site/collection/_vti_bin/client.svc/sp.utilities.utility.SendEmail' will be made in 00:00:13.            
    2              HttpRequestRetrying     Http

  • Sharepoint 2013 discussion board item view (flat.aspx) throws js error after being migrated from moss 2007

    After preforming a migration from moss 2007 to 2013 on-prem we have noticed that html tags are showing up in the discussion board posts.  I have tracked the problem down to the flat.aspx page throwing a js error. 
    'SPAnimationUtility' is undefined - coming from the sp.ui.discussions.js file
    this is what I see on the page: 
    The reply and edit buttons function fine.  Its just that the html is exposed. 
    Anyone seen this before or have a clue as to how to solve?  
    Thanks,
    -Alex

    As I remember there are a couple managed properties (metadata) that are used by the views that don't get created when you migrate a discussion board from a previous version.  I don't remember the specific properties, but take a look at a new discussion
    board in 2013 and compare the properties in the views and you will find them.  
    Paul Stork SharePoint Server MVP
    Principal Architect: Blue Chip Consulting Group
    Blog: http://dontpapanic.com/blog
    Twitter: Follow @pstork
    Please remember to mark your question as "answered" if this solves your problem.

Maybe you are looking for

  • Outgoing Mail not working with Mail.app in 10.5.7

    I am helping my mom set up her email accounts on her new macbook laptop. It has 10.5.7 I have tried setting up two different email accounts in mail.app, one is a roadrunner webmail account, and the other is a gmail account. For the roadrunner account

  • Not able to parse string-xml through parseEscapedXml

    Hi all, What I am doing is, I am getting some data through polling and populating a schema variable. Because of having extra namespace in the resultant xml, I again used processXSLT and assigned the resultant xml to a string variable (after convertin

  • How to customised web Report page?

    Hi, I am using Report Server 6i and I wish to customize the report parameter page and the result page so that I can add in buttons such as "close" and etc. Otherwise, the report pages always is covering the entire screen and my end users do now know

  • Upload raw files from iPad 2 to MacBook Pro

    iPad 2 MacBook Pro 15" Mid 2012 OS X 0.9.5 I thought this would be a simple process but apparently not. How do I transfer my RAW files from my iPad to MacBook Pro? TIA Taff

  • The question is about the narrow appearance of the firefox window in the wide screen monitor

    firefox opens the window always narrow mode in the wide screen monitor.THE QUESTİON IS: Can the wide opening not be arranged permanently like it is on internet explorer