Remove the expand/collapse image for af:treeTable

I am showing some data in a treeTable, which some rows will not have any further childs. How can I remove the expand/collapse image for those rows in the component <af:treeTable> ?
Regards,
Uday

Hi,
according to http://www.oracle.com/technology/products/jdev/htdocs/partners/addins/exchange/jsf/doc/tagdoc/core/treeTable.html you can only hide the expand/hide all link
Frank

Similar Messages

  • How do I remove expand / collapse icon for JTree empty folders

    Hi
    I am using a JTree as a file system browser. I use DefaultMutableTreeNode nodes.
    I have a problem with empty folders.
    Empty folders show the expand / collapse icon, leading the user to believe there are sub-directories. When the user double-clicks the folder, the expand / collapse icon goes away. This is a "haha-gotcha" glitch that I really don't want my users to have to continually deal with.
    So, how might I get my JTree to not show the expand / collapse icon for empty folders?
    Thanks
    Wayne

    Maybe I can use the FileSystemView isTraversable(File f) method in my TreeCellRenderer class to check if anything is in the directory.
    But I still need to know how to disable the expand / collapse icon for such a node.

  • How to implement expand/collapse property for custome components

    can any one tell me how to implement the expand/collapse
    property for the custom components in flex. i need something like
    hierarchy of custom components which on the expand should be able
    to show the children of the corresponding component and a line
    linking between them and collapsing property too.. can any one help
    me out..

    "hanu106" <[email protected]> wrote in
    message
    news:gfr2co$biq$[email protected]..
    > can any one tell me how to implement the expand/collapse
    property for the
    > custom components in flex. i need something like
    hierarchy of custom
    > components
    > which on the expand should be able to show the children
    of the
    > corresponding
    > component and a line linking between them and collapsing
    property too..
    > can any
    > one help me out..
    Tree?
    AdvancedDataGrid?
    Nested Acordions

  • Remove/hide expand/collapse icons

    Hi,
    I would like to remove/hide the expand/collapse icons and have a fixed navigation iView.
    Thanks in advance.
    Rgds,
    Janvi

    Hi Janvi,
    Probably to hide the collapse and expand icon you could go about with the theme editor , where u can set the url to these images as some blank image that coincides with ur background colour.
    To have a fixed navigation panel without scrolling ,probably you can change the the width of the navigation panel by changing the value defaultExpWidth in the file WAandNAVPanel.js file in the par file com.sap.layouts.framework.par from 220 pixels to a higher value.Later u need to upload the file back and restart ur system.
    Hope this helps,
    Regards,
    Uma.

  • [Forum FAQ] How to use parameter to control the Expand/Collapse drill-down options in SSRS report?

    In SQL Server Reporting Services (SSRS), drill-down is an action we can apply to any report item to hide and show other report items. They all are ways that we can organize and display data to help our users understand our report better. In this article,
    we are talking about how to use parameter to control the Expand/Collapse drill-down options in SSRS report.
    Consider that the report has a dataset (dsSales) with following fields: SalesTerritoryGroup, SalesTerritoryCountry, CalendarYear, SalesAmount.
    1. The report has the following group settings:
    Parent Group: SalesTerritoryGroup
     Child Group: SalesTerritoryCountry
      Child Group: CalendarYear
       Details: SalesAmount
    2. Add three parameters in the report:
    GroupExpand:
    Available Values: “Specify values”
    Label: Yes           Value: Yes
    Label: No            Value: No
    Default Values: “Specify values”
    Value: Yes
    CountryExpand:
    Available Values: “Specify values”
    Label: Yes           Value: =IIF(Parameters!GroupExpand.Value="No",Nothing,"Yes")
    Label: No            Value: No
    Default Values: “Specify values”
    Value: =IIF(Parameters!GroupExpand.Value="No","No","Yes")
    YearExpand:
    Available Values: “Specify values”
    Label: Yes          
    Value: =IIF(Parameters!GroupExpand.Value="No" or Parameters!CountryExpand.Value="No",Nothing,"Yes")
    Label: No            Value: No
    Default Values: “Specify values”
    Value: =IIF(Parameters!GroupExpand.Value="No" or Parameters!CountryExpand.Value="No","No","Yes")
    3. Right click SalesTerritoryCountry icon in the Row Groups dialog box, select Group Properties.
    4. Click Visibility in the left pane. Select “Show or hide based on an expression” and type with following expression:
    =IIF(Parameters!GroupExpand.Value="Yes", False, True)
    Select “Display can be toggled by this report item” option, and select “SalesTerritoryGroup” in the drop down list.
    5. Use the same method setting CalendarYear, (Details) drill-down with following expression:
    =IIF(Parameters!CountryExpand.Value="Yes", False, True)
    =IIF(Parameters!YearExpand.Value="Yes", False, True)
    6. Click SalesTerritoryGroup text box in the tablix. Select InitialToggleState property in the Properties dialog box, and type following expression:
    =IIF(Parameters!GroupExpand.Value="Yes", True, False)
    7. Use the same method setting SalesTerritoryCountry, CalendarYear text box with following expression:
    =IIF(Parameters!CountryExpand.Value="Yes", True, False)
    =IIF(Parameters!YearExpand.Value="Yes", True, False)
    After that, when we preview the report, we can use these three parameters to expand/collapse drill-down.
    Note:
    In our test, we may meet following issue. We can check the expression of InitialToggleState property to troubleshooting the issue.
    Applies to
    Reporting Services 2008
    Reporting Services 2008 R2
    Reporting Services 2012

    In SQL Server Reporting Services (SSRS), drill-down is an action we can apply to any report item to hide and show other report items. They all are ways that we can organize and display data to help our users understand our report better. In this article,
    we are talking about how to use parameter to control the Expand/Collapse drill-down options in SSRS report.
    Consider that the report has a dataset (dsSales) with following fields: SalesTerritoryGroup, SalesTerritoryCountry, CalendarYear, SalesAmount.
    1. The report has the following group settings:
    Parent Group: SalesTerritoryGroup
     Child Group: SalesTerritoryCountry
      Child Group: CalendarYear
       Details: SalesAmount
    2. Add three parameters in the report:
    GroupExpand:
    Available Values: “Specify values”
    Label: Yes           Value: Yes
    Label: No            Value: No
    Default Values: “Specify values”
    Value: Yes
    CountryExpand:
    Available Values: “Specify values”
    Label: Yes           Value: =IIF(Parameters!GroupExpand.Value="No",Nothing,"Yes")
    Label: No            Value: No
    Default Values: “Specify values”
    Value: =IIF(Parameters!GroupExpand.Value="No","No","Yes")
    YearExpand:
    Available Values: “Specify values”
    Label: Yes          
    Value: =IIF(Parameters!GroupExpand.Value="No" or Parameters!CountryExpand.Value="No",Nothing,"Yes")
    Label: No            Value: No
    Default Values: “Specify values”
    Value: =IIF(Parameters!GroupExpand.Value="No" or Parameters!CountryExpand.Value="No","No","Yes")
    3. Right click SalesTerritoryCountry icon in the Row Groups dialog box, select Group Properties.
    4. Click Visibility in the left pane. Select “Show or hide based on an expression” and type with following expression:
    =IIF(Parameters!GroupExpand.Value="Yes", False, True)
    Select “Display can be toggled by this report item” option, and select “SalesTerritoryGroup” in the drop down list.
    5. Use the same method setting CalendarYear, (Details) drill-down with following expression:
    =IIF(Parameters!CountryExpand.Value="Yes", False, True)
    =IIF(Parameters!YearExpand.Value="Yes", False, True)
    6. Click SalesTerritoryGroup text box in the tablix. Select InitialToggleState property in the Properties dialog box, and type following expression:
    =IIF(Parameters!GroupExpand.Value="Yes", True, False)
    7. Use the same method setting SalesTerritoryCountry, CalendarYear text box with following expression:
    =IIF(Parameters!CountryExpand.Value="Yes", True, False)
    =IIF(Parameters!YearExpand.Value="Yes", True, False)
    After that, when we preview the report, we can use these three parameters to expand/collapse drill-down.
    Note:
    In our test, we may meet following issue. We can check the expression of InitialToggleState property to troubleshooting the issue.
    Applies to
    Reporting Services 2008
    Reporting Services 2008 R2
    Reporting Services 2012

  • How do I remove the target-like images from my pdf?

    How do I remove the target-like images from my pdf? There are four of them, one in the very top center, very bottom center, far left center, and far right center.

    Are you saying they haven't always been there? If they have been, they're likely registration marks.

  • When i save any image from any website then there is no option showing in the save as box like saves as .jpg etc. In this case I manually add the extension of image for example .jpg .gif etc. Please solve my problem :(

    When i save any image from any website then there is no option showing in the save as box like saves as .jpg etc. In this case I manually add the extension of image for example .jpg .gif etc. Please solve my problem :(

    I'm guessing your problem is caused by code validation errors: orphaned division tags for example, or mismatched code and document type (i.e.  XHTML /> mixed with HTML > style closures).
    Start by using the code validation tools below and fix any reported.  You'll need an Internet connection for this:
    HTML Validator - http://validator.w3.org 
    CSS Validator - http://jigsaw.w3.org/css-validator/  
    HTML & CSS Tutorials - http://w3schools.com/
    If this doesn't solve the problem, you will need to post a URL to your live page so we can see your code and images working together.   Or at the very least copy and paste your HTML and CSS code into a reply using double arrows >> Syntax Highlighting > Plain.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

  • I cant up load the correct size image for my cover

    I cant up load the correct size image for my cover...please help

    Hello tiffgill,
    I recommend reviewing the following guidelines for page images for iTunes U:
    When creating your provider art for your iTunes 11 and iOS 6 or later provider page, keep the following in mind:
    Only submit artwork you can legally share.
    Provider art must be JPEG or PNG with appropriate file extensions (.jpg, .png).
    iTunes U Public Site Manager only supports RGB color profiles.
    Artwork must be at least 3200 pixels in width and 600 pixels in height with a minimum resolution of 72 dpi, with a maximum file size of 5MB.
    You can upload a single piece of art that iTunes U Public Site Manager can use across all platforms and devices (see sample below). If you upload a single piece of art you must also:
    Make sure that any text or logo is in the center of the artwork, in the Text/Logo Safe Area.
    The Minimum View is 994 x 600 pixels. Texts or logos should not exceed the Minimum View of 994 pixels and should not exceed 400 pixels in height.
    Ensure that you do not include any text or logos in the Tag Area, as this area is needed for iTunes-related tags. The Tag Area is part of the Minimum View and 200 pixels in height from bottom of the artwork.
    For more information and the iTunes Design Specifications, see https://itunesconnect.apple.com/itc/docs/itunes-design-specs.html.
    You can find the full article here:
    Understanding provider page image guidelines
    http://sitemanager.itunes.apple.com/help/AboutYourProviderPage/chapter_5_section _3.html#//apple_ref/doc/uid/iTUPSM-CH5-SW2
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • Am I able to remove the default style borders for spryaccordian?

    Am I able to remove the default style borders?
    The Dreamweaver css sheet says:
    This is the selector for the main Accordion container. For our default style,
    * we draw borders on the left, right, and bottom. The top border of the
    Accordion
    * will be rendered by the first AccordionPanelTab which never moves.
    I do not want the gray borders all the way around. I know how to style and remove the '.Accordian' borders
    but would like remove all 'default' borders.
    Thankyou

    Thanks Beth, but it doesn't seem to work. 
    I added what you suggested to the top line.  Here is what my css says with your addition: 
    So I have zeroed out the inner border (orange), but would like the outer gray border gone as well: 
    This is the selector for the main Accordion container. For our default style,
    * we draw borders on the left, right, and bottom. The top border of the Accordion
    * will be rendered by the first AccordionPanelTab which never moves. (gray border)
    * If you want to constrain the width of the Accordion widget, set a width on
    * the Accordion container. By default, our accordion expands horizontally to fill
    * up available space.
    * The name of the class ("Accordion") used in this selector is not necessary
    * to make the widget function. You can use any class name you want to style the
    * Accordion container.
    #Accordion1 *, #Accordion1 {
    >   border: 0;
    >}
    .Accordion {
    border-left: solid 0px orange;
    border-right: solid 0px orange;
    border-bottom: solid 0px orange;
    overflow: auto;
    Thanks for your input

  • How to Remove 'Powered by Oracle' Image for specific  Dashboard

    Hi,
    How to remove 'Powered by Oracle' from dashboard, if so is itpossible to hide for specific dashboard.
    Thanks,
    Malli.

    Hi,
    The below code can be used to hide the Powered by Oracle logo in a specific dashboard.
    <script language="javascript">
    window.onload=hideImg;
    function hideImg(){
    var all = document.getElementsByTagName("img");
    for (var i=0, max=all.length; i < max; i++) {
         var imgName = all.getAttribute("src");
         if(imgName.substring(imgName.lastIndexOf("/")+1) == "siebelbug.gif"){
              all[i].style.visibility='hidden';
    </script>
    Open the dashboard, place a text object on it, open properties and copy/paste the above code as is. Check the option 'Contains HTML Markup'. Basically the above code searches for the image 'siebelbug.gif' (Powered by Oracle logo) and hides it as soon as the page is loaded. I have tested this in 10.1.3.4 version.
    Hope it helps!!
    Thanks                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Expand Collapse feature for notes in EHP4 Flexible appraisal Template

    Hi gurus,
    Do we have any solution to add Expand and collapse feature for notes in the flexible appraisal template on the portal. Meaning if the user enters a long note in the Notes feild the expand feature should give a bigger view of the notes feild...
    Please refer to the screenshot below we have the notes feilds which have the scroll feature but cannot be expanded.

    Hi Amrita,
    If your question has been answered or whether the problem is solved, please mark the thread as answered.
    Thank you,
    Liran

  • How do I remove the "normal state" image after applying a "rollover state" image?

    I want to make a site similar to http://piecespeople.prosite.com/
    But when I apply the rollover image, the original image doesn't vanish, so I can't see the words in my rollover image through the original image.
    I've been able to do this effect with the previous version but now I can't.
    Please help! THanks!

    Thanks Guarav,
    But the fill drop down for the normal state is already clear (with red line). This is how it looks for instance. I want to clear the lightbulb in the rollover state so that I see the words behind it.

  • How do i find or replace the missing disk image for my HD

    How do i find or replace the missing disk image? for my HD ........as it is missing when i try to back up with time machine, 
    i asked for assistance the other day with time machine
    now i have worked out this is the reason i can not back up with TM, due to no disk image in my portable hard drive
    I saw a post on youtube where it explains you can copy a your HD disk imag from your time machine back ups enabeling, time machine to back up
    But i can not find where the TM Back up driver is situated in my TM Back up's
    Some advice would be greatly appreceate   as i am rather new to Mackintosh 
    Thank you
    Aiden

    Hi again.
    Just re-reading your first post, I wonder if you're confusing a disk image backup with Time Machine?
    It's certainly possible to create a disc image of your Macintosh HD and copy it to an external drive.
    However, as a backup that method has a drawback; you can't boot from a disc image directly. It needs to be mounted on a bootable system before it can be used. So it's not really much use if the internal HD fails, at least as far as allowing you to carry on working while the repair is carried out.
    Much better (and simpler) is to clone the whole drive to the external using CarbonCopyCloner or SuperDuper (there are plenty of others, but those appear to be the most popular).
    That will give you a bootable backup which can be kept up to date by incremental backups using the same applications.
    In the event of total internal HD failure all you need to do is replace the drive then boot from the clone and reverse clone to the internal to get up and running again.
    Many of us use both a bootable clone and Time Machine (on seperate drives) as each has it's different uses.

  • I keep getting the same preview image for multiple photos

    In my iPhoto Library and some of my folders the same preview image is showing for many of my images. When I enlarge or export those images or folders the correct image shows. Any ideas what is messing with the preview?
    Thanks.

    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild.
    Regards
    TD

  • HP Photo Creations v3.7's Cards: How to remove the dropped shadow boxes for photos?

    Hello.
    In Cards' mode when adding photos, I get shadow drop boxes. How do I remove these shadow drop boxes around my photos?
    Thank you in advance.

    Hi Antdude.
    There are several ways to remove the default "drop shadow" from a photo on your layout. The quickest is:
    Select the Design Tools
    Select the Photo Borders Tab
    Select the photo
    Click the first border preset (see screenshot below)
    That preset applies the plain border style to the photo, removing any other border treatments as well. To remove just the shadow, open the Advanced Controls at the very bottom of the page, scroll down, and then click the No Shadow button.
    These techniques work on graphics too.
    Hope this helps,
    RocketLife 
    RocketLife, developer of HP Photo Creations
    » Visit the HP Photo Creations Facebook page — news, tips, and inspiration
    » See the HP Photo Creations video tours — cool tips in under 2 minutes
    » Contact Customer Support — get answers from the experts

Maybe you are looking for

  • Problem in B450 Lenovo

    Guys, I am having problem with Lenovo B450 Laptop...  1. Display is not coming in BIOS Setup or in DOS. However when Windows Logins, then display comes and Laptop Runs perfectly. We can change any display settings then, no issues. ( Display comes aft

  • Finding printer's IP address on Appletalk Network

    I'm trying to install RIP software for my Fuji Pictrography printer which is on a wired ethernet appletalk network with a switch. in order for the RIP sofware to work I need to find the printer's IP address. How do I find this information? david

  • Picking the right values from tables - SQL (select statement)

    Hi everyone, I'm facing the litlle(?) problem in Oracle environment. Let me explain: I have two tables. TABLE 1 Id1 | Val1 | Id2 | Val2 A | 44 | B | 36 B | 36 | A | 44 TABLE 2 Id | Name A | New York B | Seattle I need to get from those tables, using

  • Email Account Question for Photoshop Elements 10 Organizer

    I can create draft photo emails and email messages with attachments in Photoshop Elements 10 Organizer, but I cannot activate and send them apparently unless my client is Microsoft Outlook.  I have two other email accounts that I want to use, but not

  • Convergence problem

    Hi all , i am trying to configure the convergence but didnt really get up to it , well amconsole ,delegated administrator applications are deployed on web server working on port 81, messaging server webmail is not working as when i tried to accessed