Show Details in pagetoolbar-options - property has no effect?

Hello all
When I set the property-value in the pageToolBar-iView for the Details it seems to have no effect:
When I save and preview the whole thing, the option "Details" is still available...
When I change the options for everything else (Reload, Add to Favourites, ...) it has immediate effect.
By the way - although I don't want it - I also can't remove the caption/title of the current view in the pageToolBar.
Any help or explanation is greatly appreciated.
Regards
Michael

Hi Vineeth
Thanks so far for your reply.
Of course, this could be due to some server-/proxy-side caching, although I doubt that in my case.
I already made the same settings on the productive-portal and experience the same behaviour there, which surprises me a little.
I'll simply wait about a week, maybe the problem will vanish by itself (rather I'll wait for the proxy or any other cache to un-cache it).
I'll post my experiences.
Regards
Michael

Similar Messages

  • TS3798 My Apple TV Does NOT show the Internet menu option. Has all the other options but the Internet. I am connected to the Internet as I can  Rent, Buy ,etc..movies from the Apple Store...

    I have a first Genreation iPAD and just a new Apple TV, 3rd Generation. The Apple TV does not show the Internet menu option after booting up.

    There isn't one.
    AppleTV3 has icons for all the internet features.

  • Documentviewer new toolbar button HorizontalAlignment="Right" has no effect?

    Hi all,
    I added a button to the documentviewer toolbar after extracting a copy of the template in Blend. I added a button (closeButton) with an "X" as its content. It works but I want the button to be at the right side of the toolbar. I tried the
    horizontalAlignment property but is has no effect. If I add margin="500,0,0,0" it works. But I don't want to fix it that way. What Am I missing?
    Thanks
    <Style x:Key="myDocumentViewerStyle" BasedOn="{x:Null}" TargetType="{x:Type DocumentViewer}">
    <Setter Property="Foreground" Value="{DynamicResource {x:Static SystemColors.WindowTextBrushKey}}"/>
    <Setter Property="Background" Value="{DynamicResource {x:Static SystemColors.ControlBrushKey}}"/>
    <Setter Property="FocusVisualStyle" Value="{x:Null}"/>
    <Setter Property="ContextMenu" Value="{DynamicResource {ComponentResourceKey ResourceId=PUIDocumentViewerContextMenu, TypeInTargetAssembly={x:Type Documents:PresentationUIStyleResources}}}"/>
    <Setter Property="Template">
    <Setter.Value>
    <ControlTemplate TargetType="{x:Type DocumentViewer}">
    <Border BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}" Focusable="False">
    <Grid Background="{TemplateBinding Background}" KeyboardNavigation.TabNavigation="Local">
    <Grid.ColumnDefinitions>
    <ColumnDefinition Width="*"/>
    </Grid.ColumnDefinitions>
    <Grid.RowDefinitions>
    <RowDefinition Height="Auto"/>
    <RowDefinition Height="*"/>
    <RowDefinition Height="Auto"/>
    </Grid.RowDefinitions>
    <ContentControl Grid.Column="0" Focusable="{TemplateBinding Focusable}" Grid.Row="0" Style="{DynamicResource myContentControlStyle}" TabIndex="0"/>
    <ScrollViewer x:Name="PART_ContentHost" CanContentScroll="true" Grid.Column="0" Focusable="{TemplateBinding Focusable}" HorizontalScrollBarVisibility="Auto" IsTabStop="true" Grid.Row="1" TabIndex="1"/>
    <DockPanel Grid.Row="1">
    <FrameworkElement DockPanel.Dock="Right" Width="{DynamicResource {x:Static SystemParameters.VerticalScrollBarWidthKey}}"/>
    <Rectangle Height="10" Visibility="Visible" VerticalAlignment="top">
    <Rectangle.Fill>
    <LinearGradientBrush EndPoint="0,1" StartPoint="0,0">
    <LinearGradientBrush.GradientStops>
    <GradientStopCollection>
    <GradientStop Color="#66000000" Offset="0"/>
    <GradientStop Color="Transparent" Offset="1"/>
    </GradientStopCollection>
    </LinearGradientBrush.GradientStops>
    </LinearGradientBrush>
    </Rectangle.Fill>
    </Rectangle>
    </DockPanel>
    <ContentControl x:Name="PART_FindToolBarHost" Grid.Column="0" Focusable="{TemplateBinding Focusable}" Grid.Row="2" TabIndex="2"/>
    </Grid>
    </Border>
    </ControlTemplate>
    </Setter.Value>
    </Setter>
    </Style>
    <Style x:Key="myContentControlStyle" TargetType="{x:Type ContentControl}">
    <Setter Property="Template">
    <Setter.Value>
    <ControlTemplate TargetType="{x:Type ContentControl}">
    <ToolBar Focusable="{TemplateBinding Focusable}" ToolBarTray.IsLocked="True" Language="en-us" KeyboardNavigation.TabNavigation="Continue" Uid="ToolBar_2">
    <Button x:Name="PrintButton" Background="{DynamicResource {ComponentResourceKey ResourceId=PUIDocumentViewerPrintButton, TypeInTargetAssembly={x:Type Documents:PresentationUIStyleResources}}}" CommandTarget="{Binding TemplatedParent, RelativeSource={RelativeSource TemplatedParent}}" Command="ApplicationCommands.Print" IsTabStop="True" Margin="2" Padding="2" Style="{DynamicResource {ComponentResourceKey ResourceId=PUIDocumentViewerButtonStyle, TypeInTargetAssembly={x:Type Documents:PresentationUIStyleResources}}}" ToolTipService.ShowOnDisabled="True" TabIndex="0" ToolTip="Print (Ctrl+P)" Uid="Button_14" VerticalAlignment="Center" Width="24"/>
    <Button x:Name="CopyButton" Background="{DynamicResource {ComponentResourceKey ResourceId=PUIDocumentViewerCopyButton, TypeInTargetAssembly={x:Type Documents:PresentationUIStyleResources}}}" CommandTarget="{Binding TemplatedParent, RelativeSource={RelativeSource TemplatedParent}}" Command="ApplicationCommands.Copy" IsTabStop="True" Margin="2" Padding="2" Style="{DynamicResource {ComponentResourceKey ResourceId=PUIDocumentViewerButtonStyle, TypeInTargetAssembly={x:Type Documents:PresentationUIStyleResources}}}" ToolTipService.ShowOnDisabled="True" TabIndex="1" ToolTip="Copy (Ctrl+C)" Uid="Button_15" VerticalAlignment="Center" Width="24"/>
    <Separator Uid="Separator_110"/>
    <Button x:Name="ZoomInButton" Background="{DynamicResource {ComponentResourceKey ResourceId=PUIDocumentViewerZoomInButton, TypeInTargetAssembly={x:Type Documents:PresentationUIStyleResources}}}" CommandTarget="{Binding TemplatedParent, RelativeSource={RelativeSource TemplatedParent}}" Command="NavigationCommands.IncreaseZoom" IsTabStop="True" Margin="2" Padding="2" Style="{DynamicResource {ComponentResourceKey ResourceId=PUIDocumentViewerButtonStyle, TypeInTargetAssembly={x:Type Documents:PresentationUIStyleResources}}}" ToolTipService.ShowOnDisabled="True" TabIndex="3" ToolTip="Increase the size of the content (Ctrl +)" Uid="Button_16" VerticalAlignment="Center" Width="24"/>
    <Button x:Name="ZoomOutButton" Background="{DynamicResource {ComponentResourceKey ResourceId=PUIDocumentViewerZoomOutButton, TypeInTargetAssembly={x:Type Documents:PresentationUIStyleResources}}}" CommandTarget="{Binding TemplatedParent, RelativeSource={RelativeSource TemplatedParent}}" Command="NavigationCommands.DecreaseZoom" IsTabStop="True" Margin="2" Padding="2" Style="{DynamicResource {ComponentResourceKey ResourceId=PUIDocumentViewerButtonStyle, TypeInTargetAssembly={x:Type Documents:PresentationUIStyleResources}}}" ToolTipService.ShowOnDisabled="True" TabIndex="4" ToolTip="Decrease the size of the content (Ctrl -)" Uid="Button_17" VerticalAlignment="Center" Width="24"/>
    <Separator Uid="Separator_111"/>
    <Button x:Name="ActualSizeButton" Background="{DynamicResource {ComponentResourceKey ResourceId=PUIDocumentViewerActualSizeButton, TypeInTargetAssembly={x:Type Documents:PresentationUIStyleResources}}}" CommandTarget="{Binding TemplatedParent, RelativeSource={RelativeSource TemplatedParent}}" CommandParameter="100.0" Command="NavigationCommands.Zoom" IsTabStop="True" Margin="2" Padding="2" Style="{DynamicResource {ComponentResourceKey ResourceId=PUIDocumentViewerButtonStyle, TypeInTargetAssembly={x:Type Documents:PresentationUIStyleResources}}}" ToolTipService.ShowOnDisabled="True" TabIndex="5" ToolTip="100% (Ctrl+1)" Uid="Button_18" VerticalAlignment="Center" Width="24"/>
    <Button x:Name="PageWidthButton" Background="{DynamicResource {ComponentResourceKey ResourceId=PUIDocumentViewerPageWidthButton, TypeInTargetAssembly={x:Type Documents:PresentationUIStyleResources}}}" CommandTarget="{Binding TemplatedParent, RelativeSource={RelativeSource TemplatedParent}}" Command="DocumentViewer.FitToWidthCommand" IsTabStop="True" Margin="2" Padding="2" Style="{DynamicResource {ComponentResourceKey ResourceId=PUIDocumentViewerButtonStyle, TypeInTargetAssembly={x:Type Documents:PresentationUIStyleResources}}}" ToolTipService.ShowOnDisabled="True" TabIndex="6" ToolTip="Page Width (Ctrl+2)" Uid="Button_19" VerticalAlignment="Center" Width="24"/>
    <Button x:Name="WholePageButton" Background="{DynamicResource {ComponentResourceKey ResourceId=PUIDocumentViewerWholePageButton, TypeInTargetAssembly={x:Type Documents:PresentationUIStyleResources}}}" CommandTarget="{Binding TemplatedParent, RelativeSource={RelativeSource TemplatedParent}}" CommandParameter="1" Command="DocumentViewer.FitToMaxPagesAcrossCommand" IsTabStop="True" Margin="2" Padding="2" Style="{DynamicResource {ComponentResourceKey ResourceId=PUIDocumentViewerButtonStyle, TypeInTargetAssembly={x:Type Documents:PresentationUIStyleResources}}}" ToolTipService.ShowOnDisabled="True" TabIndex="7" ToolTip="Whole Page (Ctrl+3)" Uid="Button_20" VerticalAlignment="Center" Width="24"/>
    <Button x:Name="TwoPagesButton" Background="{DynamicResource {ComponentResourceKey ResourceId=PUIDocumentViewerTwoPagesButton, TypeInTargetAssembly={x:Type Documents:PresentationUIStyleResources}}}" CommandTarget="{Binding TemplatedParent, RelativeSource={RelativeSource TemplatedParent}}" CommandParameter="2" Command="DocumentViewer.FitToMaxPagesAcrossCommand" IsTabStop="True" Margin="2" Padding="2" Style="{DynamicResource {ComponentResourceKey ResourceId=PUIDocumentViewerButtonStyle, TypeInTargetAssembly={x:Type Documents:PresentationUIStyleResources}}}" ToolTipService.ShowOnDisabled="True" TabIndex="8" ToolTip="Two Pages (Ctrl+4)" Uid="Button_21" VerticalAlignment="Center" Width="24"/>
    <Separator Uid="Separator_111"/>
    <Button x:Name="closeButton" Width="20" Content="X" ToolTip="Close" HorizontalAlignment="Right" VerticalAlignment="Center" Click="closeButton_Click"/>
    </ToolBar>
    </ControlTemplate>
    </Setter.Value>
    </Setter>
    </Style>

    Hi DSP1024,
    >>I tried the horizontalAlignment property but is has no effect. If I add margin="500,0,0,0" it works
    Yes, the HorizontalAlignment property has no effect for the items inside the ToolBar control, as a workaround, we can move your "closeButton" out of ToolBar content, like this:
    <Style x:Key="myContentControlStyle" TargetType="{x:Type ContentControl}">
    <Setter Property="Template">
    <Setter.Value>
    <ControlTemplate TargetType="{x:Type ContentControl}">
    <Grid>
    <ToolBar Focusable="{TemplateBinding Focusable}" ToolBarTray.IsLocked="True" Language="en-us" KeyboardNavigation.TabNavigation="Continue" Uid="ToolBar_2">
    <Button x:Name="PrintButton" Background="Blue" CommandTarget="{Binding TemplatedParent, RelativeSource={RelativeSource TemplatedParent}}" Command="ApplicationCommands.Print" IsTabStop="True" Margin="2" Padding="2" ToolTipService.ShowOnDisabled="True" TabIndex="0" ToolTip="Print (Ctrl+P)" Uid="Button_14" VerticalAlignment="Center" Width="24"/>
    <Button x:Name="CopyButton" Background="Blue" CommandTarget="{Binding TemplatedParent, RelativeSource={RelativeSource TemplatedParent}}" Command="ApplicationCommands.Copy" IsTabStop="True" Margin="2" Padding="2" ToolTipService.ShowOnDisabled="True" TabIndex="1" ToolTip="Copy (Ctrl+C)" Uid="Button_15" VerticalAlignment="Center" Width="24"/>
    <Separator Uid="Separator_110"/>
    <Button x:Name="ZoomInButton" Background="Blue" CommandTarget="{Binding TemplatedParent, RelativeSource={RelativeSource TemplatedParent}}" Command="NavigationCommands.IncreaseZoom" IsTabStop="True" Margin="2" Padding="2" ToolTipService.ShowOnDisabled="True" TabIndex="3" ToolTip="Increase the size of the content (Ctrl +)" Uid="Button_16" VerticalAlignment="Center" Width="24"/>
    <Button x:Name="ZoomOutButton" Background="Blue" CommandTarget="{Binding TemplatedParent, RelativeSource={RelativeSource TemplatedParent}}" Command="NavigationCommands.DecreaseZoom" IsTabStop="True" Margin="2" Padding="2" ToolTipService.ShowOnDisabled="True" TabIndex="4" ToolTip="Decrease the size of the content (Ctrl -)" Uid="Button_17" VerticalAlignment="Center" Width="24"/>
    <Separator Uid="Separator_111"/>
    <Button x:Name="ActualSizeButton" Background="Blue" CommandTarget="{Binding TemplatedParent, RelativeSource={RelativeSource TemplatedParent}}" CommandParameter="100.0" Command="NavigationCommands.Zoom" IsTabStop="True" Margin="2" Padding="2" ToolTipService.ShowOnDisabled="True" TabIndex="5" ToolTip="100% (Ctrl+1)" Uid="Button_18" VerticalAlignment="Center" Width="24"/>
    <Button x:Name="PageWidthButton" Background="Blue" CommandTarget="{Binding TemplatedParent, RelativeSource={RelativeSource TemplatedParent}}" Command="DocumentViewer.FitToWidthCommand" IsTabStop="True" Margin="2" Padding="2" ToolTipService.ShowOnDisabled="True" TabIndex="6" ToolTip="Page Width (Ctrl+2)" Uid="Button_19" VerticalAlignment="Center" Width="24"/>
    <Button x:Name="WholePageButton" Background="Blue" CommandTarget="{Binding TemplatedParent, RelativeSource={RelativeSource TemplatedParent}}" CommandParameter="1" Command="DocumentViewer.FitToMaxPagesAcrossCommand" IsTabStop="True" Margin="2" Padding="2" ToolTipService.ShowOnDisabled="True" TabIndex="7" ToolTip="Whole Page (Ctrl+3)" Uid="Button_20" VerticalAlignment="Center" Width="24"/>
    <Button x:Name="TwoPagesButton" Background="Blue" CommandTarget="{Binding TemplatedParent, RelativeSource={RelativeSource TemplatedParent}}" CommandParameter="2" Command="DocumentViewer.FitToMaxPagesAcrossCommand" IsTabStop="True" Margin="2" Padding="2" ToolTipService.ShowOnDisabled="True" TabIndex="8" ToolTip="Two Pages (Ctrl+4)" Uid="Button_21" VerticalAlignment="Center" Width="24"/>
    <Separator Uid="Separator_111"/>
    </ToolBar>
    <Button x:Name="closeButton" Width="20" Content="X" ToolTip="Close" Margin="0,0,18,0" HorizontalAlignment="Right" VerticalAlignment="Center" />
    </Grid>
    </ControlTemplate>
    </Setter.Value>
    </Setter>
    </Style>
    Screenshot:
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • My internal speaker no longer shows as an output option; has anyone experienced this?

    My internal speaker no longer shows as an output option; has anyone encountered this before?

    Hopefully one of these steps should solve the problem.
    1. System Preference > Sound > Output > Internal Speakers
        Highlight  Internal Speakers / Headphones
        Make sure Mute is not enabled.
    2. Remove the headphone.
        If you see red light in the headphone port, plug the headphone
        in and out of the port 5 or 6 times to flip the microswitch inside.
        Sound output may be stuck in the digital mode.
    3. Reset PRAM.  http://support.apple.com/kb/PH4405
    4. Reset SMC.     http://support.apple.com/kb/HT3964
        Choose the method for:
        "Resetting SMC on portables with a battery you should not remove on your own".
    5. Applications > Utilities > Audio MIDI Setup
        Audio Devices window
        Side Bar
        Click the Built-in Output.
        Under Mute any of the boxes checked? If so, uncheck it.
        Option click the speaker icon, if present and select Internal Speakers.

  • My time machine backup disc has apps from Mountain Lion that won't open now that I have Yosemite.  They all say need to be upgraded to Yosemite. Go to app store. But app store sees that I have yosemite so doesn't even show me an udate option. How can

    My time machine backup disc has apps from Mountain Lion that won't open now that I have Yosemite.  They all say need to be upgraded to Yosemite. Go to app store. But app store sees that I have yosemite so doesn't even show me an udate option. How can Update these files??

    How do you know they won't run in Yosemite? You're not trying to fiddle with stuff in your backup from the Finder, are you? If so you are likely to render that backup unusable.
    WHen when you restore them from your backup, they should be updateable.

  • Automaticlly "Show Details" when connecting to Remote Dekstop Machine

    here has been several occasions when I have waited for a remote window to connect to a machine until the MSTSC window disappears with no message.  Each time, I find that it is due to a message that would have been easily rectified if I had noticed
    that I could press the "Show Details" button (sometimes, it is greyed out at the beginning of the connection).
    Is it possible to have this expand automatically when available, and how would this be accomplished?
    Thanks

    Hello Keith.E.Kelly,
    What do you mean about ‘show detail’? Show Options?
    Please share us a screenshot about grey out ‘show detail’ button.
    If you mean the Options in the screenshot mentioned above, I go through
    Computer Configuration\Policies\Administrative Templates\Windows Components\Remote Desktop Services
    in local group policy editor, but can’t find any project to enable it.
    About the group policy issue, it is recommended to ask in the TechNet Group Policy forum.
    https://social.technet.microsoft.com/Forums/Lync/en-US/home?forum=winserverGP
    As you have the problem about “MSTSC window disappears with no message”, the computer has this issue when it tries to connect to any remote computers?
    Please open the Local group policy editor and go to Computer Configuration\Policies\Administrative Templates\Windows Components\Remote Desktop Services\Remote Desktop Session Host\Session Time Limits\End session when the time limits are reached,
    disable it and check if the MSTSC windows disappear again.
    Best regards,
    Fangzhou CHEN
    Fangzhou CHEN
    TechNet Community Support

  • When I connect my I pod shuffle to USB it shows an error message - " I Tunes has deducted a problem with your audio configuration. Audio/Video playback may not operate properly" due to this problem each and every earphone am inserting goes unusable

    When I connect my I pod shuffle to USB it shows an error message - " I Tunes has deducted a problem with your audio configuration. Audio/Video playback may not operate properly" due to this problem whenever i connect  earphone each and every earphone gets un usable. Already made a factory reset. please arrange for a rectification.. :'(

    Hi Ganeshpandianm,
    Welcome to the Support Communities!
    The article below may be able to help you with this issue.
    Click on the link to see more details and screenshots. 
    iTunes for Windows: iTunes cannot run because it detects an issue with QuickTime
    http://support.apple.com/kb/TS1371?viewlocale=en_US
    "iTunes cannot run because it has detected a problem with your audio configuration"
    Cheers,
    - Judy

  • How to stretch background image, How to change show detail item header

    Hello all I have a few questions I would like to pose humbly to your collective wisdom, FYI I use Jdeveloper 11.1.3 and ADF Fusion
    First, how do I stretch the background Image? I have a background image in a show detail item but it is very small. 400 by 400. Thing is it's just a pic of the color red gradually moving from bright to dark in the image. So stretching it should not make it look horrible, but also repeating it makes it look silly, because you have 50 little images of dark red to bright red, instead of one big image of dark red to bright red. Can this be done and how?
    Secondly how do I change the header of the show detail item in a Panel Accordion? I have 8 Show detail items, in the middle of my page and the user can click and switch between which one is open, which makes for a nice effect, but I would like to give each of the show detail items a particular color. I did this with the backgrounds but I can't do it with the header, which are always visible, while only one background is visible at a time. I tried using the skinning technique but I wasn't able to change the header (I changed the background so the skinning was done correctly). I used
    af|panelAccordion::header
      color: blue;
      font-family: Arial, Helvetica, sans-serif;
      background: Maroon;
      background-color: Maroon;
    }Because I read in the Fusion Guide (or somewhere) that the show detail item cannot be skinned and therefore doesn't have a property like af panel Accordion.
    Can it though be achieved through some other means?
    Third when I drop the data control on the page and if I pick search form, why can't I use the CreateInsert button? Why can't I use the form to Create new rows? It keeps giving me some type of error, like Row is out of bounds or something? Is that some mistake with my database, or page, or is it not possible to do it like that?
    I welcome your words of guidance and also happy new year Huzzah!!!
    Edited by: Dino2dy on Jan 4, 2011 2:01 AM

    Thanks I haven't really had time to play around with this, as I have other concerns, but I do plan on coming back to it, and it is one of the things about ADF that really is bothersome. Creatively it means I can choose between 2 styles when making an app Blaf Rich and Fusion (the other ones are just worse versions of the two) while I will concede that the superb out of the box functionalities and things I can do declaratively probably mean I won't have a Dreamweaver type freedom of design I thought there might be a way to do some of these custom design changes.
    A few questions though
    When you skin the accordion are you able to propagate the changes to show detail item headers? Because that is one thing that I really want to change, just the color of the headers but I was unable to do so.
    Also there is a component that is not part of a panel accordion or panel tabbed called panel box. Again I changed the backgrounds to great effect but I need to change the panel header and in this I failed.
    Granted I used the css color attribute for both not a picture so maybe that is the reason. Just wondering if you succeeded.
    Cheers

  • IPad not showing up as Preview Option in Folio Builder

    I'm currently using Adobe DPS (Windows), and trying to preview my folio in an iPad. I've got the Content Viewer app open on the iPad, am signed in, and am also signed in in Folio Builder. And of course, I've got the iPad plugged into the computer. After plugging in the iPad, an arrow appears next to Preview, which I assume would have been the iPad showing up as an option. But on clicking the arrow, I only get the option to open the content viewer on my desktop. Has anyone experienced this issue?

    Preview on Device for the iPad/iPhone works only on Mac OS computers, not Windows. If you sign in to the Adobe Content Viewer on the iPad using the same Adobe ID used to sign in to the Folio Builder panel, you can download your folios from the cloud.

  • Camera raw plug in not showing up as an option in the file menu the plugin was updated?

    I am trying to adjust the white balance using photoshop elements 11, all the information I have come across tells you how to do it using the camera raw plug in.  This has been updated and still I do not see it listed when I click on the file menu.  I take photos of antique gold lockets using a light house and even though the custom white balance is set on my camera the photos are still coming out too canary yellow.  I need to be able to adjust the colors so that they are more antique rose gold looking and have been reading different articles and videos on how other people adjust the colors and would like to try a couple of the ways I have seen but am unable as the camera raw plug in is not showing up as an option.  Any suggestions on how I can solve this problem would be most appreciated.  I have tried the quick fixes, color and contrast etc and not getting the results I am looking for... Please tell me what to do...

    You never see it in the file menu. But if you go to File>Open As in windows you should be able to choose Camera Raw as the format.
    On a mac it would be file>Open, choose the file, choose camera raw as the format>Open.
    That's assuming these aren't raw files. If it's a raw file, just plain ol' file>Open and selecting a raw file should open the file in the converter.

  • Show detailed screen for "WORK ITEMS"

    Hi
    We have configured POWL for showing Leave / Travel request. The requirement is ... we have to show detailed screen of respective item which are displaying under "Work Items", it's a combination of Leave / Travel etc.
    How do I show complete detail screen of selected item which are displaying under "Work Items "???
    Thanks

    Powl has multiples queries ie leave request and Timesheet you can all filter to see all tasks in one screen ALl the queries in the initial screen comes form POWL_COCKPIT

  • HT204135 How can one make the printer dialog box to have Show Details as default?

      I very often use different presets from document to document.  Thanks.

    Once you select the Show Details for any application, the next time you use that application and select to print, the full details pane should be shown.
    If this is not happening and the applications always show the Hidden Details print dialog then you may need to perform some sort of reset.
    Also, if you were to use the Presets option and set commonly used settings as a Preset, then even if the print dialog is not showing the extra details, you can still select the desired Preset from this print dialog.

  • How to open show detail item on ADF link click

    Hi,
    Can anybody tell me how to open show detail item tab on link click ??
    thanks,
    Nitesh

    Hi,
    what Frank is saying..
    1. select showdetailitem component
    2. go to disclosure property
    3. attach a managed bean variable (return true/false)
    4. in the commandLink method set the variable true/false depending on requirement
    or
    1. select showdetailitem component
    2. create a binding in the managed bean
    3. in the commandLink method set showdetailitembinding.setDisclosed(true/false);
    4. add PPR
    refer http://jobinesh.blogspot.in/2010/12/programmatically-disclosing.html
    ~Abhijit
    Edited by: Abhijit Dutta on Mar 12, 2013 5:20 PM

  • How to Stretch Components in Show Detail Item - Jdev 11.1.2

    Hello:
    I have a panel splitter-verticle, and in the second facet I have a panel stretch layout and in that a panel tabbed. Inside a show detail item, I have another panel splitter-verticle. Inside the first facet, I have a af:query and in the second facet I have a af:form. But both the af:query and the af:form do not stretch to fill the open space, when I move the first splitter.
    What is required to have the af:query and af:form inside a show detail item with a splitter stretch to fill the open space?
    Thanks for the help.
    Edited by: 862658 on Aug 11, 2011 6:29 AM

    Hi,
    set the showDetailItem StretchChildren property to First
    Frank

  • Bug in show details mode.

    I have a Java portlet (Stock Portfolio) that has a small <FORM> on it so
    that
    the user can submit an immediate stock quote request. This works just fine
    when the portlet is rendered in MODE_SHOW on the page.
    But if I enter MODE_SHOW_DETAILS (which displays the same <FORM>) I
    get an error when I try to use the form.
    When I looked at the HTML source that was generated, the problem (I believe)
    is
    that Oracle Portal is generating its own <FORM> and </FORM> tags around
    my entire contents (in SHOW_DETAILS mode only) -- so we end up with a
    nested FORMs construct.
    Is this a known problem? Can I not have a form as part
    of the content in SHOW DETAILS mode?

    By convention, SHOW_DETAILS is should be a 'full screen mode', and does not require the standard form container used in other modes (e.g. HELP, ABOUT). For an example of how to create a form in SHOW_DETAILS mode, see renderShowDetails() in src/oracle/portal/sample/devguide/helloworld/HelloWorldRenderer.java. In particular, the renderClearForm() method it calls renderers a form that can be used to submit data in SHOW_DETAILS mode.

Maybe you are looking for

  • Re-executing Activities in a Scope Activity with the Replay Activity

    Hello All, Our destination DB can go down and may take 2 -3 hrs to come back. We would want to catch a fault and then would want to replay the Invoke activity every 15 = 30 minutes hoping the DB has come UP and so records would get inserted. Understa

  • Why doesn't my pc connect to apple ipad via USB cable

    Connected my ipad to my pc via USB cable. Pc does not. Connect with it.  under Computer device does not appear.  My other external devices are ok though it recognises them ok I e external hard drive What can I co to find out fault.   It worked once b

  • Keep filenames in web gallery export

    Currently Bridge will generate random filenames when using the web gallery export tool. Drawback of this is that when we manually upload the new images to a server, they don't overwrite the old ones. Okay, it's a matter of remembering to delete the o

  • Pictures not showing on PDF file

    I have converted a word file into a PDF file, my original file included some logos and pictures, the pictures came out okay, but the logos are not showing. All you can see is the frame with a small square with an X on one of the corners. Can you assi

  • LR5 Find missing photos - search nearby won't work consistently

    LR5 seems to work inconsistently when locating missing photos and selecting "find nearby photos". It has succeeded in finding nearby files but now will only locate one file at a time....a very annoying and time consuming exercise! Any suggestions ple