Insert and Format not visible in Ribbon

So we've got a SharePoint 2013 Publishing site that uses custom master page, page layouts and content types.    Each content type uses a number of 'Full HTML content with formatting and constraints for publishing' columns. 
However, when users attempt to add content to these columns on a page, they are unable to see the Insert or Format Text ribbon tabs.
What have we done wrong to prevent these tabs from becoming visible?

Hi Arcanedevice,
can you try to add the below script on your page to make visible the Ribbon Tool bar.
you can try to add using content editor webpart on your page or list form by editing the page and add webpart.
<script>
setTimeout(function() {
var elem = document.getElementById("MSOZoneCell_WebPartWPQ4");
if(elem != null) {
var dummyevent = new Array();
dummyevent["target"] = elem;
dummyevent["srcElement"] = elem;
WpClick(dummyevent);
}, 100);
</script>
give it a try and let us know if the issue is still persist.
Krishana Kumar http://www.mosstechnet-kk.com

Similar Messages

  • Purchased songs and movies not visible on 2nd computer in Store

    Hi.
    Purchased songs and movies not visible on 2nd computer in Store. To confirm I went to re-purchase and received message telling me it was already purchased. Heeeelllppp! <smile>

    The purchased content will only be on the computer you actually downloaded it to unless you somehow move it to the other computer. You could burn content to a CD or DVD, use an external hard drive, a thumb drive, a network connection or, if you have one, an iPod.

  • Actual and Forecast not visible from Planning App -- VERY CRITICAL ISSUE ,

    this is a very critical issue.. need immediate help..
    my customer cannot see the Actual and Forecast not visible from Planning App. please help me with the same. tell me the possible solns as i cudnt have a web confrerence with the custmer till now.
    thanks/

    John ,
    they are seeing the application in planning. they created a scenario dimension containing , budget, actual and forecast.. but in the planing application they can only see budget. the rest 2 are not visible.
    thanks..

  • Lightbox Gallery previous and next not visible

    I'm still looking for a solution to the other Lightbox Gallery question I posted earlier, but in the meantime I've copied files from the application support folder mentioned before and have the gallery working up to a point.
    It works perfectly well locally in Dreamweaver Live View but having uploaded the files to the server the gallery functions without displaying the Previous, Next or Close tabs. They're active but not visible which makes me think there is a failure to load the icons
    http://www.yellotestbed.co.uk/shtml/photo_gallery.shtml
    Thanks

    Looks like you need to fix the links to those images in your javascript.
    You have a mix of "images" and "Images" for the directory names in the links. It looks like your actual folder is capital "i" Images. Your local files will work fine, because your OS sees no difference between "images" and "Images" however your server treats them as two different directories so you're getting 404 File Not Found errors because it is looking for a directory that doesn't exist
    File names should be all lower case with no special characters ($%&* etc). You should also use hyphens and underscores instead of spaces to avoid issues like this.

  • JTree - dashed lines and + and - icons not visible

    Hi,
    I implemented a TreeCellRenderer for my JTree:
    public java.awt.Component getTreeCellRendererComponent(javax.swing.JTree tree, Object value, boolean sel, boolean expanded, boolean leaf, int row, boolean hasFocus)
    Object userObject = ((DefaultMutableTreeNode)value).getUserObject();
    if (userObject instanceof Struct)
    this.setLeafIcon(this.iconStructClosed);
    this.setClosedIcon(this.iconStructClosed);
    this.setOpenIcon(this.iconStructOpen);
    else if (((DefaultMutableTreeNode)value).isRoot())
    this.setLeafIcon(iconEmptyClosed);
    this.setClosedIcon(iconEmptyClosed);
    this.setOpenIcon(iconEmptyOpen);
    /*else
    this.setLeafIcon(iconDatatypeClosed);
    this.setClosedIcon(iconDatatypeClosed);
    this.setOpenIcon(iconDatatypeOpen);
    return super.getTreeCellRendererComponent(tree, value, sel, expanded, leaf, row, hasFocus);
    ...the icons of the nodes are displayed correctly, but the dashed lines to visualize the level of a node and the + and - icons for collapsed or not collapsed nodes are not visible. I am using Windows LAF. What's wrong ?

    Please provide following information also:
    1) Are you using the default images?
    2) What is the Image URI?
    3) Snapshot of the Structure window, property inspector window?
    4) Are you using any switcher?

  • Previous bean modification next and modification not visible

    Hi,
    I have a succession of jsf pages. On the first I set values of my managed bean then I click next. On the second I set other values. If I return on the first page and change the values I reinitialize the values of the second page but if I click on the next button the changes are not visible.
    If someone can help me it will be great.

    Baltaar, this is very frustrating. Either I am not making myself clear, or you are not listening. Please search the forums for pop-ups, follow the link I already gave you, and fix your JavaScript. I'm convinced you are simply not executing things in the right order, or are resetting values after the response has already been committed.
    Here's why... The following code works for me.
    Page1 just has a next button on it. I click it to get to a second page.
    Page2 has a selectBooleanCheckbox, and a back button. Page2:
    <h:form id="form">
         <h:commandLink id="backButtonImgTop" type="submit"
                   action="#{navigationBean.back}" >
              <h:graphicImage id="backImgTop" value="/images/b_previous.gif"
                   alt="Return" height="18" width="18" />
         </h:commandLink>
         <h:selectBooleanCheckbox id="tcAgree"
              value="#{commonInfoBean.accept}" validator="#{commonInfoBean.termsAccepted}" />
    </h:form>I click the tcAgree checkbox to true and click the back button. NavigationBean runs the button click code. It resets the checkbox value to false. NavigationBean.back:
         public String back() {
              if (AppLogger.isDebugEnabled()) {
                   AppLogger.debug("Navigation Back called by IP: '" + getIP() + "'...");
              String previous = "Page1";
              //DEBUGGING
              CommonInfoBean cb = (CommonInfoBean)getBeanFromContext(COMMON_INFO_BEAN_NAME);
              cb.setAccept(false);
              //DEBUGGING
              //return the last page viewed by the user
              return previous;
         }From the first page (Page1) I click to next to go to the second page. The value has been appropriately reset. Here's my output...
    [Apr 23, 14:07:44] DEBUG AppLogger.debug() - Navigation Next called by IP: '127.0.0.1'...
    isAccept called. Value=false
    [4/23/07 14:07:51:423 PDT] 1b050a5c SystemOut O[b] isAccept called. Value=false
    [4/23/07 14:07:51:423 PDT] 1b050a5c SystemOut O setAccept called. Value=true
    [Apr 23, 14:07:51] DEBUG AppLogger.debug() - Navigation Back called by IP: '127.0.0.1'...
    setAccept called. Value=false
    [Apr 23, 14:19:55] DEBUG AppLogger.debug() - Navigation Next called by IP: '127.0.0.1'...
    isAccept called. Value=false
    All the beans I used are session scoped. I DID NOT include any JavaScript. My point is simply to say that it works without JavaScript and pop-ups in the way.
    Baltaar, your problem is in your JavaScript like I've been trying to say all along.
    CowKing

  • Nano 3rd will not unlock and is not visible in iTunes when connected to computer.

    My 3rd Gen Nano is stuck in locked position with the screen lit.  Additionally it does not show up on the computer or in iTunes when connected.  I can't restart or repair myself.  I suspect the locked switch may be broken.  Any ideas?

    First of all, try another port on your computer. Some ports are not connected direct to the motherboard and do not recognize the iPod as well as those that are.
    Still no joy? See these.
    iPod doesn't appear in iTunes or on the Mac desktop.
    iPod does not appear in iPod Updater or iTunes in Mac OS X.
    iPod appears on the Mac OS X desktop but not in iTunes.
    Try it in disk mode.
    Putting iPod into disk mode.

  • XD01 fields Name 3 and Name4 not visible

    Hi,
    I have a requirement, in xd01, when i go to Address tab, by default sap shows only Name1 and Name2 fields, but Name3 and Name4 are visible only after clicking on the "More Fields" button, which will expand and Name3 and Name4 fields will then be shown.
    My requirement is to keep these fields open all time.
    Kindly let me know the solution.
    Thanks,
    A Sustainer

    Hi
    if you want name3 and name4 mandatory fields in XD01 means
    Path:
    Financial Accounting (New) --Accounts Receivable and Accounts Payable--Customer Accounts--     Master Data-- Preparations for Creating Customer Master Data --Define Account Groups with Screen Layout (Customers) --
    select that particular group and click GENERALDAT : -- ADDRESS  - put required entry for Name 3 and Name 4
    thanking you
    regards
    Mahesh

  • X200S + Ultrabase and Ultrabattery not visible in VIsta

    Hello,
    Just got my new X200S and ultrabase with DVD burner and Ultrabattery.
    When the Laptop is in the the ultrabse the DVD wroking fine.
    When I changing to the ultra battery I do'nt see it in Vista power no second battery.
    Even in the power mgt of Lenovo no second battery visible.
    Any feed-back ? I need to install specific soft ?
    Thx in advance
    Christian

    Gang,
    It can only be done on OSX 10.4.11 were you can format and partition the drive as a Windows BOOT partition. (Partition under the options)
    The problem is it was so slow in MAC land that it was not worth the time.
    I do not see this option under Lepoard.
    Stefan, thanks that looks like a much better way of doing this.
    Thanks
    Gordon

  • Dunning phases and blockades not visible for archived invoices in FPL9

    Hi experts,
    I am not able to see the dunning phases and blockades for archived invoices when i am opening FPL9 with archive.
    My requirement is that it should be visible and donot so any error message.
    Can you please provide me with the solution ?
    Thanks and Regards.
    Ajit Krishna

    Hi
    When you Full reverse an Inv, it will not show in ES32 but can see ERDK table with original and reverse inv doc numbers. The new invoice will be genreated based on the restored Billing order for the same period.
    FPL9 -show current valid posted amount as due amount & posting reversed inv amount will be shown as _ve.
    Message was edited by: G Reddy

  • Safari menu and tabs not visible

    Sometimes when I start safari the menu wont pop when hidden, also the tabs are not realy visible.
    only thing I can do is close swipe to go to desktop a few times, then it gets back.
    Somebody an Idea how to prefent this ?

    Yes, you are right, I use fullscreen mode, but the problem is that the tabs are normally visible in full screen mode, and when you go to the top it appears, now it does not do that ( there are 2 tabs open at thata moment).
    When it occurs again I will try the keystroke.

  • Component and text not visible in dashboard

    Hi expert,
    After launching Dashboard in BI Portal Calender component and Button text and normal was not displaying.
    Dashboard Design layout component is displayed.
    After launching calender component text,button text,normal text was not displaying
    there is no dynamic visibility applied.
    Please help me what is issues

    it is running on Internet explore and not running on Chrome,,
    Dashboard version is 4.1 sp2
    Flash version find the screen shot

  • Link colors and formats not WYSIWYG

    I'm having trouble with Link colors. I have the Link Format set to a certain colors but what I see after I publish my site is a crap shoot. Sometimes the change takes sometimes it doesn't, and often what I see in Safari 4/5 or Firefox is not the same as I have set in iWeb. And yes I force a page refresh by clearing the cache and reloading the pages every time.
    Any help would be greatly appreciated. So far I like how WYSIWYG iWeb is but this one problem has plagued me for some time now.
    John

    When you set the color use the Web Safe color pallet from the color pane:
    Click to view full size
    OT

  • Images and formatting not loading for certain sites

    I've noticed problems with some websites not loading images or page formatting. These sites have worked in the past.
    Two examples:
    www.theoatmeal.com -- site will not load any images (.pngs and .jpgs). I've checked the recommended solutions for images not displaying and have run through all except resetting Firefox to factory settings.
    www.patheos.com -- site displays only basic text on a white background. It does display images however (.jpgs). It also displays a message at the top of the screen that I am running an outdated version of Internet Explorer.

    Reload web page(s) and bypass the cache to refresh possibly outdated or corrupted files.
    *Press and hold Shift and left-click the Reload button.
    *Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    *Press "Cmd + Shift + R" (MAC)
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    Did you check for any image exceptions?
    You can try to use "Clear Recent History" to clear all "Site Preferences"
    *https://support.mozilla.org/kb/Clear+Recent+History
    Note that clearing "Site Preferences" clears all exceptions for cookies, images, pop-up windows, software installation, and passwords.
    If images are missing then check that you aren't blocking images from some domains.
    *Check the permissions for the domain in the current tab in "Tools > Page Info > Permissions"
    *Check that images are enabled: Tools > Options > Content: [X] Load images automatically
    *Check the exceptions in "Tools > Options > Content: Load Images > Exceptions"
    *Check the "Tools > Page Info > Media" tab for blocked images (scroll through all the images with the cursor Down key).
    If an image in the list is grayed and there is a check-mark in the box "<i>Block Images from...</i>" then remove that mark to unblock the images from that domain.
    Make sure that you do not block third-party images, the permissions.default.image pref should be 1.
    There are also extensions (Tools > Add-ons > Extensions) and security software (firewall, anti-virus) that can block images.
    See also:
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    *http://kb.mozillazine.org/Images_or_animations_do_not_load

  • Index and partition not visible !!!

    Hello,
    I am creation a table with partition by range and primary key constraint like
    CREATE TABLE employees
    (employee_id NUMBER(4) NOT NULL,
    last_name VARCHAR2(10),
    department_id NUMBER(2),
    CONSTRAINT SUP_EMP_PK
    PRIMARY KEY
    (employee_id,department_id)
    PARTITION BY RANGE (department_id)
    (PARTITION employees_part1 VALUES LESS THAN (10) TABLESPACE DATA_003_P001_HUB3);
    but when I query the user_ind_partitions as
    select * from user_ind_partitions where partition_name='employee_part1';
    it returns nothing
    Why is this problem coming up?
    Help..
    Regards
    Abhinav

    Actually the problem statement is:
    I have table as :
    CREATE TABLE SUPERVISION_BPS
    ID NUMBER NOT NULL,
    servicetype NUMBER NOT NULL,
    type VARCHAR2(6 BYTE) NOT NULL,
    insertDate DATE NOT NULL,
    filename VARCHAR2(100 BYTE) NOT NULL,
    numberOK NUMBER NOT NULL,
    numberKO NUMBER NOT NULL,
    numberCRE NUMBER NOT NULL,
    numberUPD NUMBER NOT NULL,
    numberDEL NUMBER NOT NULL,
    CONSTRAINT SUP_BPS_PK
    PRIMARY KEY
    (ID, servicetype, type)
    using index local
    TABLESPACE DATA_003_P001_HUB3
    PARTITION BY RANGE (InsertDate)
    PARTITION "PARTITION_LAST" VALUES LESS THAN (MAXVALUE)
    create sequence seq_sup_bps start with 1 increment by 1;
    The problem is whenever I am deleting a partition as
    alter table &1 drop partition &2;
    and rebuilding the partition as:
    alter index &1 parallel;
    alter index &1 rebuild partition &2 compute statistics;
    alter index &1 noparallel;
    based on unused indexes
    select user_ind_partitions.index_name || '|' || user_ind_partitions.partition_name
    from user_indexes, user_ind_partitions
    where user_indexes.index_name=user_ind_partitions.index_name
    and user_ind_partitions.status='UNUSABLE'
    and upper(user_indexes.table_name)='&2';
    Now when the entry for the same primary key takes place, it gives an error putting the same value again.
    Kindly help
    Tried all bit have not found the solution.
    Note: have tried removing UNUSABLE check but how to get it done as per the need.
    Regards
    Abhinav
    Edited by: user8744860 on Jul 2, 2012 2:35 AM

Maybe you are looking for