Collapse all below and expand all below

hi,
Expand all below & collapse all below action are not working for <af:treeTable/> UI component which are provide by <af:panelCollection/> component by default (we dont have control over them). But Action 'expand all below' on selected row is just expanding itself (selected one.)
Here is the code of implement of treeTable
<af:panelAccordion inlineStyle="width:100%;" discloseMany="true"
discloseNone="true" id="regional_panel1">
<af:panelCollection
inlineStyle="width:100%;height:100%"
id="regional_collection_table_tags">
<af:treeTable rowSelection="single" contextMenuId="treeTableMenu"
rowBandingInterval="1" inlineStyle="width:100%;"
columnStretching="last"
value="#{bindings.result.treeModel}" var="node"
id="TagTree"
binding="#{pageFlowScope.TagHelper.tagTree}"
selectionListener="#{pageFlowScope.TagHelper.tableSelectionListener}">
<f:facet name="nodeStamp">
<af:column headerText="#{bundle.TAG_NAME}">
<af:outputText value="#{node.name}"/>
</af:column>
</f:facet>
<af:column headerText="#{bundle.DESCRIPTION}">
<af:outputText value="#{node.description}"/>
</af:column>
</af:treeTable>
</af:panelCollection
>
</af:panelAccordion>
Note: Collapse All & Expand All actions are working fine which are also provide by <af:panelCollection/> component.
Please provide me any info to fix this.
kind revert me for more info.
Thank
KSB

Hi,
your panel accordion does not have a showDetail item as a child containing the panelCollection, The IDE should have flagged this as an error. Your problem doesn't reproduce for me
Frank
Ps.: component ID should be kept short (less than 7 characters) because they add to the download size and thus contribute to performance degradation

Similar Messages

  • Install, Match (X) or Copy, Merge all below and Copy all below

    Hi,
    Can any one please tell me when can we use only "Install", combination of both "Install and Match (X) or Copy" and only "Match (X) or Copy" Indicatiors.
    And what is Match (x) or Copy, are they different from each other or they are one and same? if there is difference what is the diff between Match (x) and Copy.
    And what is the use of "Merge All Below" and "Copy All Below" in the context menu of the objects that are collected.
    Regards,
    Kumar.

    Hi,
    Install
    -> Objects that are being transferred for the first time. There is not an active version of these objects in the system.
    ->Business Content objects that have been redelivered in a new version. These objects are identified by the Content time stamp in the corresponding object tables.
    Match (X) or Copy
    If the SAP delivery version and the active version can be matched, a checkbox is displayed in this column.With the most important object types, the active version and the SAP delivery version can be matched.
    The Match indicator is set as default in order to prevent the customer version being unintentionally overwritten. If the Content of the SAP delivery version is to be matched to the active version, you have to set the Install indicator separately.
    The active version is overwritten with the delivery version if
    -> the match indicator is not set and
    -> the install indicator is set.
    In other words, the delivery version is copied to the active version.
    If the Install indicator is not set, the object is not copied or matched. In this case, the Match indicator has no effect.
    In the context menu, two options are available:
    a.      Merge All Below
    The object in the selected hierarchy level and all objects in the lower levels of the hierarchy are selected as to Match.
    b.      Copy All Below
    The Match indicators are removed for the object in the selected hierarchy level and all objects in the lower levels of the hierarchy. If the Install indicator is also set, these objects are copied from the delivery version to the active version.
    The most important properties which are taken into account when versions are matched are now listed.
    For further information check this link [Installing Business Content |http://help.sap.com/saphelp_nw04/helpdata/en/80/1a66d5e07211d2acb80000e829fbfe/content.htm]
    Hope this helps....
    Rgs,
    Ravikanth.

  • Collapse All and Expand All functionality in Tree

    Hi All,
    I am using TreeByNestingTableColumn element to display the tree hierarchy .
    Does anyone knows how to implement Collapse All and Expand All functionality for this tree (if someone have sample code for these functionality then it will be great for me) ?
    Thanks in advance.
    Ravi.

    Hello Ravindra Sahu,
    Code for EXPAND ALL button:
    *step 1:Access node
      lo_nd_tree_hierarchy = wd_context->get_child_node( name = wd_this->wdctx_tree_hierarchy ).
    *step2: Extract all the table entries from node which is binded to table
    lo_nd_tree_hierarchy->get_static_attributes_table(
        IMPORTING
          table = lt_tree_hierarchy ).
    *step3:set element attribute Expanded to abap_true
        loop at lt_tree_hierarchy ASSIGNING <ls_tree_hierarchy>.
          <ls_tree_hierarchy>-expanded = abap_true.
        endloop.
    *step4: Finally the updated data needs to be binded.
      lo_nd_tree_hierarchy->bind_table( lt_tree_hierarchy ).
    Code for COLLAPSE ALL button:
    *step 1:Access node
      lo_nd_tree_hierarchy = wd_context->get_child_node( name = wd_this->wdctx_tree_hierarchy ).
    *step2: Extract all the table entries from node which is binded to table
    lo_nd_tree_hierarchy->get_static_attributes_table(
        IMPORTING
          table = lt_tree_hierarchy ).
    *step3:set element attribute Expanded to abap_true
        loop at lt_tree_hierarchy ASSIGNING <ls_tree_hierarchy>.
          <ls_tree_hierarchy>-expanded = abap_false.
        endloop.
    *step4: Finally the updated data needs to be binded.
      lo_nd_tree_hierarchy->bind_table( lt_tree_hierarchy ).
    Please don't forget giving REWARD points...:-)
    Edited by: Bharath Komarapalem on Jul 11, 2008 9:17 AM

  • Is it possible to remove collapse all and expand all links in HGrid.

    Hi All,
    Is there any way to remove collapse all and expand all links which HGrid shows by default, the reason is when the user clicks on collapse all it will collapse to root node but my requirement is it should collapse untill 2 node level.
    Thanks
    Babu

    From the javadoc of OAHGridBean
    ======================
    void setExpandAllEnabled(boolean expandAllEnabled)
    Indicate whether the "Expand All" (and "Collapse All") links should be rendered for the HGridBean.
    Cheers,
    Ganesh

  • What exactly is the difference between :"Refresh" and "Expand All"?

    They seem to do the same thing most of the time. What is the difference?

    Hi Dermot,
    Well, for a report that uses no expansions the time it takes for Refresh and Expand All should be about the same. Maybe a little bit faster for Refresh. But if your report does have expansions, Refresh should be significantly faster.
    Here is the list of what happens to each EVDRE in your workbook when you click the "Expand All" button: [http://help.sap.com/saphelp_bpc75_nw/helpdata/en/fb/b03d0099e8428d95eb7de2c964cf18/frameset.htm] It has 8 steps. I believe that when you click the "Refresh" button it only executes steps 3 and 4 (not completely sure about that, but you get the point - it doesn't do everything).
    Expand All can get especially problematic when you have a workbook with a large number of EVDREs. In this case, a nice option  is to right-click on the worksheet and take a look at the options under the top menu item. One of the options is to expand only the active sheet, which can save you a lot of time.
    Cheers,
    Ethan

  • HT5243 It says on the "Java for Mac OS X 10.6 Update 8" pg that this download is for all users and supercedes all earlier versions. Yet to the right is says you HAVE to have 10.6.8 as a requirement. WHICH is it?  Is it for all versions of 10.6 or not?

    It says on the "Java for Mac OS X 10.6 Update 8" pg that this download is for all users and supercedes all earlier versions. Yet to the right is says you HAVE to HAVE 10.6.8 as a requirement. WHICH is it?  Is it for all versions of 10.6 or not? Why isnt this made more clear?
    And question is STILL not answered.  WHICH is to be downloaded and used?
    I would like an answer.

    Thank you for the clarification!  It is really kinda circle-speaking to state on an information page to put forth info people need in that manner.  It really does add to the confusion and frustration when you need a simple,
    straight answer, such as you gave, and you dont get one.  Kind of like that . . other... software company....
    This rabbit hole still continues, though.  I'm going to ladder it out, just to see for myself:
    Have: MacBookPro / 2.4 GHz/ Intel Core i5/ running OS X 10.6.3 -
    Need: latest version of Java, so Flash update can be loaded;
                                  (want html5 to be the standard so badly, but client wants Flash)                  
      Attempted:  Tried to find Java for Mac OS X 10.6 Update 2 on Apple website.  No Joy.
            Found:   Update 2 is proper update for Mac OS X 10.6.3.  Could not find download on Apple website;
                           - No Joy.
      Attempted:  Tried to find Java for Mac OS X 10.6 Update 8. Half Joy. Confusing, no straight info.
            Found:   In order to install update for Java, must update OS X from present 10.6.3 to 10.6.8
      Attempted:   Tried to find update to OS X 10.6.3 to 10.6.8. on Apple website.
    how far does the rabbit hole go?

  • Estimate time to enable all constraints and create all indexes

    Hi,
    To prepare a project to export/import for a whole database,
    How can I estimate time required to enable all constraints and create all indexes
    * Assume one full table scan per one FK constraint
    * Assume one full table scan plus one sort/merge operation per one index
    * Check it out whether we can use parallel DDL feature to speed up enabling of FK constraints
    how can I use core schema (which will be exp/imp) in the production db to get needed metric for the calcualtion?
    thanks
    Jerry

    There is no definative way to find the time it takes to enable a constraint / create a Index
    It toatally depends on the Size of the table / execution plan / resources available (In terms of CPU and Physical Memory ) /
    Amount of Temporary tablespace

  • Large number of duplicate listings of songs. 1 (or several) is found and then 1 or more with the circled "!" in col 1. I would like to automatically delete all duplicates and then all marked as not found.

    large number of duplicate listings of songs. 1 (or several) is found and then 1 or more not-found with the circled "!" in col 1. I would like to automatically delete all duplicates and then all marked as not found. How do I do this without losing my one good copy?

    large number of duplicate listings of songs. 1 (or several) is found and then 1 or more not-found with the circled "!" in col 1. I would like to automatically delete all duplicates and then all marked as not found. How do I do this without losing my one good copy?

  • Collapse top node and expand below node

    Hi,
    In my Query, I have inserted a characteristic2 below an existing characteristic1(like a hierarchy). The problem I m facing is that if I set "Collapse node" property in the top characteristic(Characteristic1) it is also applied to the below characteristic(Characteristic 2). I want the characteristic 1 to be collapsed by default and characteristic 2 to be expanded by default. Is this possible?
    Regards,
    Krishna

    Hi
    I hope your requirement is not possible.Be coz char 2 will be dependent on Char1.When u collapse Char1 automaticall Char2 also collapsed.
    Regards
    Ram.

  • My screen keeps shrinking and expanding all by itself!

    The screen on my Mac Book Pro keeps shrinking ad expanding all by itsef. Why is this happening and how do I stop it. it will do it for a few secons at a time.

    There are two possibilities. You could be accidentally activating the Screen Zoom feature, either through its keyboard shortcut or by Ctrl-scrolling the mouse or trackpad. If this is the cause, the edges of the screen are hidden because they've been pushed out when the screen is zoomed up. If this is it, open System Preferences, click Accessibility, click Zoom, and turn off all the check boxes.
    If it is only happening in a few programs like your web browser and it is not cropping out the screen edges, then you could be accidentally using the Smart Zoom feature of the trackpad. If this is the cause, open System Preferences, click Trackpad, click Scroll & Zoom, and turn off Smart Zoom.

  • Traversing all directories and listing all file objects

    Hi
    I am wondering if someone can help me out.
    In IFS, I would like to traverse recursively down all directories starting from a particular directory to be set by me, and collect all objects that are file objects, say in an Array of PublicObjects. However the listing should exclude folder objects. Obviously the folder objects would be used to traverse further down the directory tree and collect more (file) PublicObjects.
    I have tried a few things but I can't seem to distinguish between folder and file objects. If someone could provide me with a code example to get me started that would be tremendously appreciated.
    Thanks very much.
    Hugo

    Can you not just test for an instance of Folder?

  • I have an exel file on my idisk. When transferring it to numbers on my Ipad, it loses all formulae and basically all rules setup in the file. Is there anything i can do about that?

    I recently tried importing a exel file from my Idisk to numbers on my Ipad. It did it succesfully but took out all the formulas, and other hidden settings. Is there a way to import the file with out losing all of that?

    In Excel there are about 500 functions with their own syntax in formulas.
    In Numbers there are about 200 functions with their own syntax in formulas.
    Is it surprising that formulas are dropped in the import scheme ?
    I think that it's normal.
    Same thing for 'hidden settings'.
    Numbers was never described as a clone or even a substitute to Numbers.
    If it doesn't fit your needs, use an other tool.
    It's mainly because Numbers is not resembling to Excel that many of us use it, so we hope that it will never do that.
    Yvan KOENIG (VALLAURIS, France) jeudi 1 septembre 2011 15:50:43
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.0
    My iDisk is : <http://public.me.com/koenigyvan>
    To be the AW6 successor, iWork MUST integrate a TRUE DB, not a list organizer !

  • I did a "Bounce - replace all tracks" and now all my mono audio tracks are stereo... What's the safest way to get them mono?

    I don't think I unchecked the "Include volume and pan automation" checkbox before the "Bounce - replace all tracks" conversion. I hadn't added any volume or pan automations I figured: you can't include something I haven't added, although I did probably have the pan controls set in the mixer. Anyway, now I want to convert my six (previously mono) tracks from stereo back to mono, preserving as much as possible the original mono sound quality before it was converted to stereo, so that I can start mixing. Every MP3 I've exported is ignoring the pan settings I have in the mixer, I suspect due to the fact that the audio for each track is now stereo (I changed the tracks back to "mono" in the mixer but the audio remains in stereo). Unfortunately I don't have any unused audio files in the audio bin and I killed the undo history as well. 

    Thats what I came up with:
    As you can see I got a stereo file on track 1 to start with,
    Now go to the corresponding channel strip and switch to mono,
    Perform a BIP to a new track
    and the result will be in mono.
    Regards

  • Ssis package error need help to fix it. though disabled all triggers and droped all the foreign keys and truncated tables on pipeline constraints.

    [PartyName1 [6672]] Error: SSIS Error Code DTS_E_OLEDBERROR.  An OLE DB error has occurred. Error code: 0x80004005.
    An OLE DB record is available.  Source: "Microsoft SQL Server Native Client 11.0"  Hresult: 0x80004005  Description: "Transaction (Process ID 1414) was deadlocked on lock resources with another process and has been chosen as the
    deadlock victim. Rerun the transaction.".

    you need to provide Details about your package like what is source/destination.. any SQL query/where is the exact deadlock point.
    Please check the following links which may help you.
    http://blogs.technet.com/b/fort_sql/archive/2011/12/12/get-rid-of-deadlocks.aspx
    http://msdn.microsoft.com/en-us/library/ms191242.aspx
    Let us TRY this |
    My Blog :: http://quest4gen.blogspot.com/

  • I have lost the channel record selector on all channels and on all projects how do I get it back

    I have lost the individual record select button on the channels, so I can not record anything. I have no idea what I did to lose this but how do I get it back

    Hi
    Check Preferences:Audio:Devices and make sure you have the correct Input Device selected?
    CCT

Maybe you are looking for

  • I'm having a problem with coreaudiotoolbox and corevideo.dll.

    I'm having a problem with coreaudiotoolbox and corevideo.dll. PC was corrupted, I restored. Now when I launch Safari, I run into errors, can't find these two dll files. Itunes won't download at all because it says something is missing but won't say w

  • How to setup web.xml files in Tomcat 4.0.6

    Hi, I'm to new to Java Servlets. i am trying to run my first servlet but it's not showing up..can anyone help me out please!!! I created a folders like this: webapps/sumitapps/WEB-INF\classes\Forms\login.class under sumitapps: i'm puttin all of my .h

  • How do I take the photo in an email that was sent to me and put it in a folder?

    I want to save photos sent to me in emails. How do I do this so I can retrieve them later to put in my photos?

  • BPS Manual Planning - without Keyfigures?

    Hi all! I have a question for BPS-Layouts... It is Possible configurate a layout without a Keyfigure?. My problem is that my customer want to inform some relations between characteristic (only characteristic) using BPS tool and i don't know the way t

  • Flex Builder for Linux will need his companion Thermo

    I've been developing in Flex for a long time now. My main work is in the design area although I do a lot of coding. The Flex Builder Linux testing is being quite difficult, since the layout design view is not enabled yet. So we need a lot of imaginat