The 'Edit folder' link doesn't appear in content area portlet (URGENT)

Hi! I made three content areas, and published them as portlets in a page. However, when I enter the page as an authorized user, I don't see the 'Edit folder' link on any content area portlet. But if I enter to any of the content area pages with the same user, I see the link
Is this a bug? What could be the reason?
Thanks a lot!
Luis

try this...
Edit the page where you added the portlets. Click the edit defaults link next to each of the portlets and scroll down to make sure the show Edit Link checkbox is checked. I don4t see any Edit Link checkbox when I edit the portlet's defaults!!
What should it be?

Similar Messages

  • I downloaded firefox onto my MacBook Pro; dragged the icon into the applications folder it doesn't appear in the folder or anywhere on the desktop. What do I do now?

    I don't know what else to tell you.

    I downloaded firefox again, deleted the earlier version, and now firefox is working properly.

  • Edit Folder link always is visible if Item Level Security is enabled

    Hi,
    When Item Level Security is enabled in a folder, it show the 'Edit Folder' link, instead if the user is not authenticated.
    Does anybody know how to remove this link???
    Thanks.

    We to have experienced this behavior. Is this a bug?
    The Edit Link generated does not allow the user to "edit" any items, but shows the Administration link. This is not a good thing. This makes using Item Level Security very difficult, from the standpoint of User Interface and confusion.
    We are looking into creating a portlet to dynamically generate an "Edit Folder" link to replace the current one. However, we have doubts this will work.
    Dean
    - Solaris
    - Portal 3.0.9.8.2
    - 8.1.7.3
    (Awaiting Release 2!)

  • I open a file - playback - the audio is there - doesn't appear in timeline, but I hear it, after 1 edit, the audio disappears.  I have to reboot to get it back then it happens again.  All suggeswtions welcome.  Thank you, Randy

    I open a file - playback - the audio is there - doesn't appear in timeline, but I hear it, after 1 edit, the audio disappears.  I have to reboot to get it back then it happens again.  All suggeswtions welcome.  Thank you, Randy

    Is your Premiere Elements 12/12.1 running on a Windows 7, 8, or 8.1 64 bit computer or a Mac computer?
    What is the brand/model/settings of the camera recording your video?
    Windows 7 64 bit PC 
    Footage taken from DVD through Adobe Premiere Elements
    Are you sure about the Frame Width and Frame Height that you gave 720 x 484? Did you mean 720 x 480?
    Yes, my err.  720X480
    For the Frame Rate, was it really 29.97 frames per second and you rounded it off to 29 frames per second? Or,
    is the frame rate really 29 frames per second?
    If the properties that you just posted are representative of your source file, what project preset did you or the
    project set for the project preset? If you are not sure, please tell us the readings for Editing Mode, Timebase, Frame Size,
    and Pixel Aspect Ratio under Edit Menu/Project Settings/General.
    Still having problems - haven't been able to edit project. 
    Thank you for your help.
    Randy Klein

  • Why does that same photo keep appearing in the edited folder????

    Why is that same photo always mysteriously appear in the edited folder whenever a photo is added to camera roll?????  If I happen to take a picture on my iPad, then if I go to iPhoto, there is this one stubborn picture that mysteriously appears in the edited folder. When I try to revert it to original so I can get it out from the edit folder, it's not highlighted. So what I do is actually edit it then revert it to original, then it disappears. However if I go back to the iPad camera and take a picture or just save a picture from safari that same stubborn photo reappears in iPhoto edit folder when I launch the app. If that's not a bug, then what is????

    Please follow the suggested resolution in this thread
    Screen Saver reverts to National Geographic

  • Edit Page link is not appearing in Portal???

    Hi All,
    I created a Web Page,  custom layout and published in WPC and created a role & folder for that web page in PCD.
    I am able to see the role and the web page in Portal but "Edit Page" link is not appearing in portal.
    I am the owner of the page.
    Where to give the permissions?
    Thanks
    Thruna Shanmuga
    Edited by: Thruna Shanmuga on Jul 9, 2009 2:56 PM

    Check this link :
    [https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/1083635f-e977-2a10-15ac-b0072abf941b?overridelayout=true|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/1083635f-e977-2a10-15ac-b0072abf941b?overridelayout=true]
    It should be like :
    <%@ taglib uri="prt:taglib:com.sap.portal.reserved.layout.WpcTagLibLayout" prefix="sdn"%>
    <%@ taglib uri="prt:taglib:com.sap.portal.reserved.layout.TagLibLayout" prefix="lyt" %>
    <lyt:template>
    <table id="SAPexample2" border="0" cellpadding="0" cellspacing="0" width="100%" frame="VOID">
    <tbody>
    <tr>
    <td colspan="3" width="100%">
    <sdn:container id="pageheaderlinks" />
    </td>
    </tr>
    <tr>
    <td colspan="3" width="100%">
    <sdn:container id="top" />
    </td>
    </tr>
    </tbody>
    </table>
    </lyt:template>

  • The edit JSP page does not appear...

    Hi!
    I make a simple JSF application, I would like to show a DB table in a h:dataTable component and edit a given row after click, but the edit JSP page does not appear. I click the on link in the table, but the list is loaded again and not the edit page...:(
    (no exception in application server console)
    Please help me!
    my code:
    **************************************** listmydata.jsp***************************
                   <h:dataTable
                             value="#{myBean.myDataList}"
                             var="myDataItem"
                             binding="#{myBean.myDataTable}"
                   >
                        <h:column>
                             <f:facet name="header">
                                  <h:outputText value="Ajdi"/>
                             </f:facet>
                             <h:commandLink action="#{myBean.editMyData}">
                                  <h:outputText value="#{myDataItem.id}"/>
                             </h:commandLink>
                        </h:column>
    ********************************* MyBean.java *******************************
    package bean;
    import java.sql.Connection;
    import java.sql.SQLException;
    import java.util.ArrayList;
    import java.util.List;
    import javax.faces.component.html.HtmlDataTable;
    import javax.faces.context.FacesContext;
    import javax.naming.InitialContext;
    import javax.naming.NamingException;
    import javax.sql.DataSource;
    import wrapper.MyData;
    public class MyBean {
         private List myDataList;
         private HtmlDataTable myDataTable;
         private MyData myDataItem;
         protected Connection Conn;
         // *********************** actions ***********************
         public String editMyData() {
              myDataItem = (MyData)getMyDataTable().getRowData();
              return "editmydata";
         public String saveMyData() {
              try {
                   updateDataInDB();
              catch (SQLException e) {
                   System.out.println(e);
                   System.err.println(e);
                   e.printStackTrace();
              catch (NamingException e) {
                   System.out.println(e);
                   System.err.println(e);
                   e.printStackTrace();
              return "listmydata";
         // *********************** setter ***********************
         public void setMyDataList(List myDataList) {
              this.myDataList = myDataList;
         public void setMyDataTable(HtmlDataTable myDataTable) {
              this.myDataTable = myDataTable;
         public void setMyDataItem(MyData myDataItem) {
              this.myDataItem = myDataItem;
         // *********************** getter ***********************
         public List getMyDataList() {
              if (myDataList == null || FacesContext.getCurrentInstance().getRenderResponse()) {
                   loadMyDataList();
              return myDataList;
         public HtmlDataTable getMyDataTable() {
              return myDataTable;
         public MyData getMyDataItem() {
              return myDataItem;
         // *********************** others ***********************
         public void loadMyDataList() {
              try {
                   getDataFromDB();
              catch (NamingException e) {
                   System.out.println(e);
                   System.err.println(e);
                   e.printStackTrace();
              catch (SQLException e) {
                   System.out.println(e);
                   System.err.println(e);
                   e.printStackTrace();
         void getDataFromDB() throws NamingException, SQLException {
              myDataList = new ArrayList();
              java.sql.PreparedStatement PreStat = ownGetConnection().prepareStatement("SELECT id, name, value FROM BEA_JSF_SAMPLE");
              PreStat.execute();
              java.sql.ResultSet Rs = PreStat.getResultSet();
              while(Rs.next()) {
                   MyData OneRecord = new MyData();
                   OneRecord.setId(Rs.getLong(1));
                   OneRecord.setName(Rs.getString(2));
                   OneRecord.setValue(Rs.getString(3));
                   myDataList.add(OneRecord);
         void updateDataInDB() throws SQLException, NamingException {
              String sql = new String("UPDATE BEA_JSF_SAMPLE SET name=?,value=? WHERE id=?");
              java.sql.PreparedStatement PreStat = ownGetConnection().prepareStatement(sql);
              PreStat.setString(1,myDataItem.getName());
              PreStat.setString(2,myDataItem.getValue());
              PreStat.setLong(3,myDataItem.getId().longValue());
              PreStat.execute();
              ownGetConnection().commit();
         Connection ownGetConnection() throws SQLException, NamingException {
              if (Conn == null) {
                   InitialContext IniCtx = new InitialContext();
                   DataSource Ds = (DataSource)IniCtx.lookup("JDBCConnectToLocalhost_CRS");
                   Conn = Ds.getConnection();
              return Conn;
    ******************************* editmydata.jsp *****************************
    <%@ page language="java" contentType="text/html;charset=UTF-8"%>
    <%@ taglib prefix="f" uri="http://java.sun.com/jsf/core"%>
    <%@ taglib prefix="h" uri="http://java.sun.com/jsf/html"%>
    <html>
    <body>
    <f:view>
    <h:form>
         <h:panelGrid columns="2">
              <h:outputText value="Name"/>
              <h:inputText id="name" value="#{myBean.myDataItem.name}"/>
              <h:outputText value="Value"/>
              <h:inputText id="value" value="#{myBean.myDataItem.value}"/>
         </h:panelGrid>
         <h:commandButton action="#{myBean.saveMyData}" value="Save"/>
    </h:form>
    </f:view>
    </body>
    </html>

    I have put his lines in the faces-config.xml and now it works:
         <navigation-rule>
              <from-view-id>*</from-view-id>
              <navigation-case>
                   <from-outcome>editmydata</from-outcome>
                   <to-view-id>editmydata.jsp</to-view-id>
              </navigation-case>
         </navigation-rule>
         <navigation-rule>
              <from-view-id>*</from-view-id>
              <navigation-case>
                   <from-outcome>listmydata</from-outcome>
                   <to-view-id>listmydata.jsp</to-view-id>
              </navigation-case>
         </navigation-rule>
    I don't understand, that I define the next JSP page in the bean java file, which must be shown, but I must define this in the faces-config.xml as well.
    for example:
         public String editMyData() {
              myDataItem = (MyData)getMyDataTable().getRowData();
              return "editmydata";
    is it right or Do I make a mistake somewhere?

  • Repost:Edit Folder link/Portlet Customize link

    All,
    apologies if this has been asked already.
    Need to hide the customize link in Portlet and edit folder link in folder/content area. Better yet, would like to give selective access to these, based on user group (or other acl). I am on 3.0.7. Currently, hiding the header (or banner) is the only way of not showing these links. Do later versions have the same problem ? or has this issue been resolved.
    Thanks
    Sanjay

    I had similar problem in 3.0.9
    I agree with Karthic that looks like a caching problem.
    In the folder portlet, I enabled the Edit option. If a user originally had the privileges to do edit folder, then the folder shows the Edit option.
    If later I remove the privileges so that the user only have view content privileges,
    then the Edit option still shows up in the folder portlet and if the user clicks on the "Edit"link, then a message like insufficient privileges error comes up.
    FYI i don't use any caching for pages.
    Karthic,
    have you heard of this problem in 3.0.9?
    Tks!

  • Is it possible to disable the 'edit layout' link on the record detail page

    Is it possible to disable the 'edit layout' link on the record detail page? Not the homepages, I know there is a switch for that, but I thought there was one for the detail pages?
    I want to disable this as I dont want users saving their own layouts, they must stick to the related sections defined in the default layout. The problem is that if they are to have access to certain related lists when an opportunity is of a certain type but NOT other types. If they have saved the layout (using the 'Edit Layout' link), and change the record type, they will see related sections that have been set to 'Not available' in the default layout (ie step 4) for that 'type'.

    Robbo, at this time it not possible to disable the Edit Layout on the record detail page.

  • HT5628 When I install Windows 8 on my MacBook Pro(13-inch,Early2011),the Super DVD Drive doesn't appear in Windows 8 and installing Boot Camp 5 drivers doesn't solve my problem,what can I do?

    When I install Windows 8 on my MacBook Pro(13-inch,Early2011),the Super DVD Drive doesn't appear in Windows 8 and installing Boot Camp 5 drivers doesn't solve my problem,what can I do?

    Go into your system preferences and click the startup disk icon then select your Mac HD. 

  • How do I change a filename in Pages when the "save as" option doesn't appear?

    How do I change a filename for a Word doc that I imported into Pages?  The "save as" option doesn't appear and Pages assigns my documents arbitrary filenames and puts them in odd places like templates.

    Tim Stollery's answer worked for my problem:
    https://discussions.apple.com/message/11088237#11088237

  • The 'add to' option doesn't appear in iTunes

    When I connect my iPhone5 to my laptop and load iTunes, the 'add to' option doesn't appear so I can't add any files from my computer to my phone...
    Tested it with my iPad and it works fine... Am I missing something?

    Turn on the menus and it will appear.
    Cntrl + B to enable menus.

  • The icon of faceTime doesn't appear in the dock just space for it

    The icon of faceTime doesn't appear in the dock just space for it and i can turn on the faceTime when I click to the space

    If the above doesn't work, try a reset.
    1. Hold the Sleep and Home button down (together)
    2. For about 10 seconds
    3. Until you see the Apple logo (very important)
    4. Ignore the red slider

  • So, I bought the iPod shuffle and when I plug it into my mac, the option of syncing doesn't appear.  What do I do?

    So, I bought the iPod shuffle and when I plug it into my mac, the option of syncing doesn't appear.  What do I do?

    Does the Shuffle appear ini Tunes at all?  If not try using a different USB port and double checking to make sure the other end of the syncing cable is firmly seated in the Shuffle.
    B-rock

  • I have a Creative D100 wireless speaker.  How do I get my bluetooth on my Mac to work with the speaker.  It doesn't appear to recognize the speaker.

    I have a Creative D100 wireless speaker.  How do I get my bluetooth on my Mac to work with the speaker.  It doesn't appear to recognize the speaker.

    Have you gotten in touch w/the speaker manufacturer?  Their response? 

Maybe you are looking for

  • Can I transfer my existing Photoshop Single App subscription to your new offer of both PS & LR

    Hi, I see on your site that I should be able to cancel my existing membership and start with your offer of both Photoshop and Lightroom for under £9 per month. I originally wanted both software packages but couldn't afford both so only have Photoshop

  • "ORA-1715 : UNIQUE may not be used with a cluster index" but why?

    "ORA-1715 : UNIQUE may not be used with a cluster index" but why and what "may" means here? Any comments will be welcomed, thank you and best regards; show rel release 1002000300 CREATE CLUSTER sc_srvr_id ( srvr_id NUMBER(10)) SIZE 1024; SELECT clust

  • One JVM with different system.out / system.err files

    I have a menu application which allows me to launch different swingapps which runs inside one single JVM. All applications have their own properties.file which is read and handled at the start of each application. One property allows me to print all

  • To remove warning message " CONNECTION TO LIVE CACHE FAILED"

    Hi, I am working on a stand alone SNC system , and I am testing it . We have not installed Live cache in this system We are creating master data directly in SNC system never faced issue while creating location , Business partner But while creating Pr

  • Why V3 update for Inventory?

    Hi All, Why we go vor V3 update in case of INventory Management? Is there any particular reason for this because Que delta is the most preffered one if iam right. Points wil be assigned VK