How to make portlet header not clickable?

Hi,
I published a page as a portlet and placed it on another page. I enabled the region where the portlet resides in to show the portlet header. Now I found out that if I click the portlet header, the orignial page of the portlet is shown. I don't want to show it to my users, but do want to keep the portlet header and make it non-clickable. Is there a way to do that? Any help will be appreciated.
I'm using version 10g.
Thanks,
Yaxu

Hi,
You have to disable the "Show Details Link on Portlet Header" box for the region where you display the page as portlet.
It's at the end of the "Edit Region" Main page where you can set which links you want to display.
Alex

Similar Messages

  • How to make a button not clickable???

    i wanna make a button not clickable, once it is clicked... help me to do this
    Thanks
    Rubin

    you can either call setEnabled(false) or remove the listenerFor sake of GUI ergonomics, I'd suggest the first solution.
    If you implement the second solution, you'll have the user clicking on the button again and again and asking himself why nothing happens.

  • The Header in my home page is truncated. My home page Header is cut off. The header appears in Internet Explorer, but not in Mozilla Firefox 3.6.13. How to make the header display in Firefox?

    The Header in my home page is truncated. My home page Header is cut off. The header appears in Internet Explorer, but not in Mozilla Firefox 3.6.13. How do make the header display?

    (Images or animations do not show) worked well.

  • How to make "payment terms" not modifiable in sales order

    Hello every 1,
    please help, i want to know:
    how to make "payment terms" not modifiable in a sales order , as we know it comes directly from CMR and client wants "PAYMENT TERMS" to be not modifiable.
    Look forward for your response.
    Thanks in Advance,
    Deepak

    You need to use SHD0 or userexit chnages, like always determine from customer master, if user changes, give message like not modifiable  or ask abaper to make non modifable field

  • How to make dyn/admin not to prompt for username and password?

    Hello all
    How to make dyn/admin not to prompt for username and password? I am writing a selenium job to automate cache invalidation to load test a production issue we are facing. Selenium is opening a fresh firefox session and prompting for username and password every time. I am also trying to modify my script such that it will use the same session again and not prompt for username and password. But I thought of asking this question in the group.
    Your inputs will help a lot.
    Thanks,
    Sundar

    Hi,
    You can set enabled property of /atg/dynamo/servlet/adminpipeline/AuthenticationServlet/ to false. It will not prompt for authentication.
    Gopi

  • How to make iTunes Match not convert my files ALACs in 256 kbps (VBR)? How to get iTunes to convert CDs to Apple loselss?

    How to make iTunes Match not convert my files ALACs in 256 kbps (VBR)? How to get iTunes convert CDs in Apple loselss? The difference between 256 (VBR) and Apple Losless is very clear...

    Dear Michael, good day!
    1. As per your instruction, I turned off iTM.
    Small discrepancy – where are two screens with iTM switch:
    -Settings > iTunes & App Store. 
    -Settings > Music
    I switched OFF in both.
    NB: I turned device to English for convenience.
    2. My next step was Setting > General > Usage – tapped {Music};
    {All music} screen appeared; I swiped it and taped Delete. 
    3. I performed “hard reset” …………………………………..
    4. Switched back On iTM
    5. Taped Music app on Home screen
    iTM has started –  (it took 18 minutes  to completed, 60 mbps Wi-Fi speed )
    Regret to inform… All the same:
    Erase and reset to factory default? Or I did smf wrong?

  • How to make a JScrollPane not getting Focus?

    How to make a JScrollPane not getting Focus?
    When i tab out from a textfield inside a scroll pane focus is going to ScrollPane .And if i press tab once more then only focus is going to other textField which is outside the scrollpane.
    For me when i press tab from a text field inside a scrollPane ,i should go to textfield out side the scroll pane.
    satish

    Hi,
    I've the same problem, that I have to double click on tab
    to step from a textfield with a scrollpane to the next textfield in my panel.
    I tried to implement a FocusListener on my JScrollPane, but without success.
    Can you tell me in detail how to implement this listener ?
    Kind regards
    Andy Kanzlers

  • How to download PR Header Note/Text?

    Hi
    How to download PR Header Note/Text
    Vijay

    1) Go to Transaction Code : SE37
    2) In the Function Module field, enter READ_TEXT & Execute
    3) Please enter details as follows in blank screens
    CLIENT : Put your client no here
    ID : B01
    LANGUAGE : EN
    NAME : You put here "Text name" which you will get by clicking on Goto Header in Long text for Line.
    OBJECT : Put "EBAN" here
    ARCHIVE_HANDLE & LOCAL_CAT : keep blank
    & the execute.
    Regards
    Bhavesh Mistry

  • How can make the header repeat in every page?

    I followed the instructions in pages' help nad it does work for text heardes, however it does not work with images and graphics.
    Daoes anyone know how to make graphic and/or images headers repeat in each page?
    Thanks in advance.
    Ruben

    Make them Master Objects:
    http://www.freeforum101.com/iworktipsntrick/viewtopic.php?t=182&highlight=letter head&mforum=iworktipsntrick
    Peter

  • WPF: How to make Tab Header to show three different icons?

    Our WPF application needs Tab header to show three different icons and Foreground.
    If tab is not selected, show one icon and black foreground. If tab is selected, show another icon and white foreground. If tab is selected and also require show Chromestyle, show third icon and red foreground.
    we have tried the following code. However, MultiDataTrigger section does not work.
    <TabItem x:Name="tabItemSetup" Header="Setup">
    <TabItem.HeaderTemplate>
    <DataTemplate>
    <StackPanel Orientation="Vertical">
    <Image x:Name="imgSetup" Height="50" Width="65" Source="Resources/Images/UNSELECTED_Setup Icon.png" DockPanel.Dock="Top" />
    <TextBlock x:Name="txtSetup" Text="{Binding}" Foreground="Black" Style="{StaticResource TabTextStyle}" DockPanel.Dock="Bottom" FontFamily="Eras ITC" FontSize="13.333"/>
    </StackPanel>
    <DataTemplate.Triggers>
    <DataTrigger Binding="{Binding IsSelected, RelativeSource={RelativeSource AncestorType={x:Type TabItem}}}" Value="True">
    <Setter TargetName="txtSetup" Property="Foreground" Value="White"/>
    <Setter TargetName="imgSetup" Property="Source" Value="Resources/Images/SELECTED_Setup Icon.png"/>
    </DataTrigger>
    <MultiDataTrigger>
    <MultiDataTrigger.Conditions>
    <Condition Binding="{Binding IsChromeStyle}" Value="True"/>
    <Condition Binding="{Binding IsSelected, RelativeSource={RelativeSource AncestorType={x:Type TabItem}}}" Value="True"/>
    </MultiDataTrigger.Conditions>
    <MultiDataTrigger.Setters>
    <Setter TargetName="txtSetup" Property="Foreground" Value="Red"/>
    <Setter TargetName="imgSetup" Property="Source" Value="Resources/Images/Chrome SELECTED_Setup Icon.png"/>
    </MultiDataTrigger.Setters>
    </MultiDataTrigger>
    </DataTemplate.Triggers>
    </DataTemplate>
    </TabItem.HeaderTemplate>
    </TabItem>
    Does anyone know how to make it work? Thx!
    JaneC

    Where is the IsChromeStyle property defined? It is the Header, i.e. the string "Setup" that is the DataContext of the HeaderTemplate and the a string has no property called IsChromeStyle so you must specify a source for the binding.
    If for example the DataContext object of the TabControl, or the parent of the TabControl (for example the window or whatever) has a property called IsChromeStyle you could bind to this one using a RelativeSource:
    <MultiDataTrigger.Conditions>
    <Condition Binding="{Binding DataContext.IsChromeStyle, RelativeSource={RelativeSource AncestorType={x:Type TabControl}}}" Value="True"/>
    <Condition Binding="{Binding IsSelected, RelativeSource={RelativeSource AncestorType={x:Type TabItem}}}" Value="True"/>
    </MultiDataTrigger.Conditions>
    Then it should work. It is the binding that fails.
    Please remember to close your threads by marking helpful posts as answer.

  • How to make a JFrame not shown in taskbar

    i want to make a frame not shown in taskbar (similiar to jdialog) when clicking a button how can i make it.

    The main containers are JFrame, JDialog, JWindow.
    JFrame shows up on the Task Bar, JDialog and JWindow don't.
    You can't change the basic behaviour in Java code. Maybe you could using JINI, but I not nothing about that.

  • How to make a header ?

    I'm working on a website with dreamweaver, and i had a template on photoshop saved for it, however it's been corrupted.
    How can i make a header like this from scratch ? baring in mind, I am prety much imcompetent with Photoshop
    the wbsite is www.fitnesscovered.co.uk
    the header such as "begin your healthier lifestyle" or on the other pages is exactly what I'm trying to re-create
    Thank you

    Hi there, here's a tutorial for how to build that image. It may seem long, but never fear! The steps are actually quite simple.
    1) Create a file in the dimensions of the image (872 x 379 for the "begin your healthier lifestyle" banner).
    2) Place the desired photo into the document by copying and pasting or by going to File > Place.
    3) Select the Type Tool and click the area of the image where you would like the text to start. Please see the screenshot below for details on how to change the appearance of your text.
    4) Select the Rectangle Tool highlighted below and draw a rectangle around your text. Change the color at the top of the window as shown below. Your text will be obscured, but we will fix that in the next step.
    5) In your Layers Panel, drag the layer containing the rectangle you just made below your text layer.
    6) To create the second line of text and rectangle, you can simply duplicate the layers you made, then edit them. Select both layers by clicking on the text layer, the shift-clicking on the rectangle layer. Next, control click on the selected layers to open a flyout. Choose duplicate layers. In your canvas, it will look like nothing happened, but the layers will show up in your layers panel.
    7) Hit command V to select the Move Tool. You can now click and drag the rectangle and text layers to reposition them.
    8) Revisit Step 3 for how to select your text to change it.
    9) To change the dimensions of the rectangle, select the rectangle layer and press command T to enter Transform Mode.
    I hope this helps! Please let us know if you have any other questions about this technique.

  • How to make A JButton not look disabled when it is  setEnabled(false);

    how do i make a jbutton not look disabled when i setEnabled(false) because when u disabled abutton it changes and takes away the frame of the button it self..is there a way to make it make a sound when its disabled and not take the frame away...example look at windows calculator when u have an answer for example 2 + 2 when the answer is displayed if u try to click the backspacebutton at this point it makes a sound..is this possible in java thanks

    Why did you repost this question??????
    You where given an answer in the other posting. You have not explained why the solution won't work and you haven't provided any further information about your question.
    You also haven't listened to the other advice, you just reposted the question word for word.

  • How to make some rows not selectable in AdvancedDataGrid

    Hi there,
    I have an advanced data grid which allows to select multiple rows. I need to make certain rows not selectable dependent on the row data. How can this be done?
    Help is greatly appreciated. Thanks in advance.
    --Charmaine

    Hi, You can view same demo here
    Thanks and Best regards,
    Pallavi Joshi | [email protected] | www.infocepts.com

  • How to costimize portlet header in homepage?

    Hi, folks:
    I had a content area portlet needs to show up
    in the home page. How can I put an image as the portlet header instead of using the default one?
    Thanks.
    null

    Frank,
    What do you mean by the "default one"? If you mean the default portlet header (the bar with rounded corners), you can turn that off in the region settings. Then, you can supply your own content (such as an image) at the top of your folder.
    Regards,
    Jerry
    null

Maybe you are looking for

  • Report on current stock and safety stock

    Hi, I want to have the report on current stock and safety stock. In MC.9 it gives wrong safety stock. When I go to cross check the safety stock in material master & in MC.9 I see differences. Thanks, Kiran

  • Creative ZEN MX (1.04.01)

    Creative ZEN MX (.04.0)ZThe new firmware features an option (System > Display Settings > Backlight Time) that allow you to dim the backlight minimum every 5 seconds, but never completely turn off to save battery, unless you have auto lock setting on

  • Maximum extended desktop LCD Size Possible; and others

    Hi, I am interested in getting the Gateway FPD2185W, but have a few questions. 1. Will the iMac support a monitor of this size? I think that it probably does, since it features the same resolution (1680x1050). 2. I read about issues in 10.4.7, where

  • EzGrabber2 and Adobe FMLE 3.2 issue

    Hello everyone...I have an issue with Adobe FMLE 3.2 when using my EzGrabber 2 video capture card. The video displays fine, but I get an error for the audio that claims how the "Audio format is not supported."  It doesn't seem to work with MP3 format

  • How do i open pdf files attached to email so can print.

    I receive pdf files attahced to email but when they open they open in photoshop elements which I don't want.