Expand/Collapse not working DataViewWebPart

Hello,
I'm having some difficulties with my DataViewWebPart page. The page shows the documents from a library. These documents are grouped by three collumns:
- Klantnummer
- InstallatieType
- Map
In SharePoint Designer i added these three collumns for sorting/grouping. When i choose "Expand" the whole list is expanded. But the Plus "+" and Min "-" signs are not working on my page. When i click on them the sign changes
but nothing happends. (Collapsing works but not expanding)
I can not expand these anymore.
Hope you guys understand my story and know a way to fix this.

Are you seeing any JavaScript errors?
Dimitri Ayrapetov (MCSE: SharePoint)

Similar Messages

  • OS X 10.6.6-gestures for pinch to zoom or expand do not work.

    Just installed Firefox 4 RC 1 and noticed that the pinch to open or close (zoom/expand) do not work. I can use other gestures (like swiping three fingers to move back or forward, but no luck with the pinch to zoom or expand. Keyboard shortcuts for this function work fine (command +/-).

    Funcionó para mi
    It worked for me

  • URGENT: Sorry, Expander will not work without the Stuffit Engine...

    hallo,
    I want to watch a show of myself on Time Warner Cable TODAY live ONLINE while being in Europe, so it is urgent:
    sometimes when I try to install a software I get the following error message:
    'Sorry, Expander will not work without the Stuffit Engine. Please reinstall the original installer.'
    Just now I wanted to install 'Windows Media Player 9 for Mac OS X' and got that error message. Any suggestions?
    THANKS YOU!
    1 GHz PowerPC G4 (3.3)   Mac OS X (10.4.7)  

    "Any suggestions? "
    Obviously you need to reinstall Stuffit Expander. Download it from Stuffit.com.
    Also, forget about Windows Media Player. It's out dated, and not even made anymore. Download the free Flip4Mac QuickTime plugin from Flip4Mac.com
    Hope that was urgent enough...

  • Af:tree control expand is not working

    Hi all ,
    af:tree control expansion is not working if I click on the + sign. But it is working thru context menu "Expand All Below" option.
    Can any one help me.
    Thanks
    Kristi
    Message was edited by:
    Kristi(user576892)

    Hi,
    not with this little information
    - which technology
    - which browser version (if applicable)
    - how to reproduce
    - does it reproduce on other machines / browsers
    Frank

  • Tray Expand button not working

    Dear Expert,
    After the SPS upgrade of SP 21 for java stack, I am facing a issue of Expand button of the tray is not working for the iviews which contain dynamic information such as BI reports etc., Please help me out in this issue
    Regards
    Noel

    Hi Noel,
    The expand button / the tray UI element can be a Webdyn Pro Java Component.
    This does not have to be a iview tray.
    Are you using the BI iView in a separate Portal or are you using Portal Federation ?
    If you have 2 portals, what is the second portal version ?
    Regards,
    Kai

  • Default Expand/Collpase not working in adf's af:tree component

    Hi,
    I have a tree problem with a default events of expand/collapse.
    I have a PathSet variable in the bean which I have linked to the treeState of af:tree in the jsp.
    So, the page opens up with all the nodes expanded, but when I click on any of them, the tree doesn't collapse. I dont handle the DisclosureEvent since I thought that only customizes the event handling. If I dont link to the PathSet variable, then the page opens with all the nodes collapsed and the expand action doesn't work. I've tried with both request and session scoped beans, but it doesnt help. Any pointers will be greatly appreciated, have read the docs, but the problem remains.
    Snippet of code:
    dialogPage.jsp:
    <af:tree value="#{backing_dialogpage.model}" var="row"
    binding="#{backing_dialogpage.tree1}" id="tree1">
    <f:facet name="nodeStamp">
    <af:selectBooleanCheckbox label="#{row.strName}"/>
    </f:facet>
    <f:facet name="pathStamp">
    <h:outputText value="#{row.strName}"/>
    </f:facet>
    </af:tree>
    (backing bean)Dialogpage.java - constructor
    public Dialogpage () {
    TableRow root1 = new TableRow ("1994");
    TableRow child1 = new TableRow("child1_cruise_id_101");
    TableRow child2 = new TableRow("child2_cruise_id_202");
    List childList = new ArrayList();
    childList.add(child1);
    childList.add(child2);
    root1.setChildren(childList);
    this.rootList.add(root1);
    this.rootList.add(new TableRow("1996"));
    this.model = new ChildPropertyTreeModel(rootList,"children");
    this.path = new PathSet (true);
    }

    The logic here is pretty similar to the one with folders and files. Folders are container types and files are just leaf nodes (can't contain other files).
    I don't want under each folder node to have two new container nodes - one that hold other subfolders, and another one that hold just files. And that's just what I get now.
    How to avoid that?
    Anybody?

  • Expand all not working for me

    I have no clue on this and it sucks. Can anybody tell me why
    my expandAll() call does not work. It does not expand the nodes.
    Here is my code. The ADG is created in actionscript and then
    grouping is applied to create hierarchical data. The last three
    lines of the following code are where I call expandAll... after
    validateNow too.
    [CODE]var oneColumn:AdvancedDataGridColumn = new
    AdvancedDataGridColumn("FRONTS: ("+firstsFronts.length+")");
    var twoColumn:AdvancedDataGridColumn = new
    AdvancedDataGridColumn("#");
    var threeColumn:AdvancedDataGridColumn = new
    AdvancedDataGridColumn("%");
    oneColumn.width = 120;
    twoColumn.width = 35;
    threeColumn.width = 45;
    oneColumn.sortable = false;
    twoColumn.sortable = false;
    threeColumn.sortable = false;
    oneColumn.dataField = "FRONT";
    twoColumn.dataField = "theCount";
    threeColumn.dataField = "thePercentage";
    //twoColumn.width = 20;
    indPersonnelDataGridFronts.columns =
    [oneColumn,twoColumn,threeColumn];
    var groupingColl:GroupingCollection = new
    GroupingCollection();
    var groupingGroup:Grouping = new Grouping();
    groupingColl.source = firstsFronts;
    var myFieldGroup:GroupingField = new GroupingField("FRONT");
    groupingGroup.fields = [myFieldGroup];
    groupingColl.grouping = groupingGroup;
    var sr:SummaryRow = new SummaryRow();
    var sf:SummaryField = new SummaryField();
    sf.dataField = "FRONT";
    sf.operation = "COUNT";
    sf.label = "theCount";
    sr.fields = [sf];
    sr.summaryPlacement = "group";
    //myFieldGroup.summaries = [sr];
    var srP:SummaryRow = new SummaryRow();
    var sfP:SummaryField = new SummaryField();
    sfP.dataField = "FRONT";
    sfP.summaryFunction = calcPercentage;
    sfP.operation = "COUNT";
    sfP.label = "thePercentage";
    srP.fields = [sfP];
    srP.summaryPlacement = "group";
    myFieldGroup.summaries = [sr, srP];
    groupingColl.refresh();
    indPersonnelDataGridFronts.dataProvider = groupingColl;
    indPersonnelDataGridFronts.validateNow();
    indPersonnelDataGridFronts.expandAll();[/CODE]

    Thank You Barbara.  I knew it was operator error.
    David
    On Fri, Oct 10, 2014 at 6:10 PM, Barbara B. <[email protected]>

  • Group by collapsed not working for external content type

    Hi,
    I've got a list that displays data from external content type and I need it to be grouped by a column and have it collapsed by default.
    The problem I have is that on a page by itself everything works fine. But when I add the list on a page with other web parts rendering the list as collapsed doesn't work as expected.
    It will render the group headers correctly and everything is collapsed. But when I expand one of the groups ALL items are shown under that group, even the ones that belong to some other group. I then expand another group and it also shows ALL items. But when
    I set the default to expanded each group header only has the items that belong to it, even if I collapse it and then expand again.
    As I said, having the groups collapsed works fine if the listview is by itself on a web part page, but as soon as I add another web part (doesn't matter what type) it stops working.
    Is this a bug or might there be something I'm doing wrong?

    Hi,
    As this issue is submitted via internal pipeline without external URL can be provided, we will keep focus on it to see if there any update.
    If there is an urgent requirement, I would suggest you call MS Customer Support Services for quick replies:
    http://support.microsoft.com/
    Best regards,
    Patrick
    Patrick Liang
    TechNet Community Support

  • Tree expand / contract not working when region copied...

    Hi
    I have a tree view region which I want to appear on each relevant page. Simple, thinks I, I'll copy the region from page to page... but when I do this then the expand / contract buttons don't work. If I create a new tree region then paste in the code from the tree region I want to copy all works well...
    Using Apex version 4.0.0.00.46.
    Anybody else seen this?
    Steve

    >
    The existing page zero appears at the top of other pages, containing specific data. This Tree element only appears on the config pages and is on the left hand side of the page.
    >
    You've just caused me to make a discovery that I hadn't noticed in nearly 6 years of APEX use: Page Zero is assigned a page template! I've no idea why this is: I don't think it should; this template will have absolutely no effect on how the application is actually rendered so I therefore think we should ignore it and maybe it will go away...
    Has the presence of a page template on Page Zero influenced your thinking on its use?
    Understand that regions on Page Zero will not be rendered according to the Page Zero template, but according to the page template for the page they are included on. The region Display Points remain constant: if you assign the Tree element to region position 2 on Page Zero, and it's included on pages 6, 7 and 8, then it will appear in region position 2 on pages 6, 7 and 8. However, using page templates and CSS, region position 2 can be in completely different places on the screen on pages 6, 7 and 8 (and even be in different positions on the screen and on a printout from the same page...).
    The other main thing about Page Zero is that the rendering of regions can be controlled conditionally, often using the Current page in Expression 1 condition, where a list of page numbers specifies which pages a region should be included on. So to make your Tree region only appear on Config pages 6, 7 and 8, set its Display Position to Region Position 2, and give it a Current page in Expression 1 condition with Expression 1 set to <tt>6,7,8</tt>. If the "existing page zero" elements appear on every page except 6, 7 and 8 then use the opposite Current Page not in Expression 1 condition...
    Only very simple apps would tend to include all Page Zero regions on other pages in their entirety: most of the time there will be mix'n'match using conditional rendering.
    >
    Which raises yet another question (getting my 2 cents worth here!) - can we conditionally change the position of a region? eg if on app pages 1 thru 5 then page zero is at top. if on pages 6 thru 8 then appears on left side?
    >
    Hope I've managed to explain why that's not how it works?
    (And reflecting on the mysterious presence of a template on Page Zero, I can only think that it has something to do with the Display Point preview pop-up, even though it's entirely useless as a safe guide to where the region will ultimately appear...)

  • Jtree expand all not working

    I have a very large jtree, that at it second level gets loaded from a JDOm file.
    The problem is I am having a problem expanding all the nodes under a
    particular node. I need an expandAll method. Nothing I have tried has
    expanded beyond the child level.
    After a few permutations my code right now is
    public void expandAll(DefaultMutableTreeNode node)
    Enumeration list = node.breadthFirstenumeraion();
    while (list.hasMoreElements())
    TreePath treePath = new
    TreePath(((DefaultMutableTreeNode)list.nextElement()).getPath()))
    tree_m.expandPath(treePath);
    Am i missing something about expandPath?
    I even use the code from JTree example to the reload the model.
    But it still only shows the nodes children, not the children's children....etc.

    Hi!
    You can try these methods where treeRoot is the root node of the tree:
    * Collapses the function group tree.
    public void collapseAll() {
    for (int i = treeRoot.getChildCount(); i > 0; i--) {
    tree.collapseRow(i);
    * Collapses the function group tree.
    public void expandAll() {
    for (int i = treeRoot.getChildCount(); i > 0; i--) {
    tree.expandRow(i);
    /Malin

  • Expanding text not working as i would like

    Hello,
    I am working from Robohelp X5 and have often been using
    expanding text within my project. When im creating my expanding
    text and hyperlinking funtions it appears to look the way i have
    set it up however, after publishing my project some of the
    expanding text are already open (cascaded) and some are closed. I
    would like them all to be closed unless selected by the end user.
    How can I do this?

    When you apply a hyperlink to any size of text, RH will apply
    the hyperlink style in the css stylesheet, which specifies the
    character size.
    The challenge is to apply your text specs after the phrase
    that begins with
    <a href= .................>
    This is hard to achieve in WYSIWYG, because the RH html
    viewer takes some shortcuts compared to the WebHelp output code.
    Harvey

  • EVDRE - 'ALL' Keyword in Expand range not working when using ParentH2

    Hi experts,
    I am using a second hierarchy in my P_ACCT dimension (ParentH2). When creating a report with the ALL keyword in expand range (MemberSet) to show all members under P&L an error occurs (EVDRE cannot retrieve data). Without having the second hierarchy in the dimension the report works fine.
    Did anyone of you experience the same problem before? Is there a solution?
    Thanks in advance and best regards
    Felix

    Hi Sanjeev,
    thanks for your advice!
    Processing the dimension works without any issues.
    In the second hierarchy there are about 400 members (knodes and basemembers). That's roughly the same number of members as in the first hierarchy. Is there a known issue with the system when using the parentH2 property for that number of members?
    Thank you and best regards
    Felix

  • Code Collapse not working

    My code collapses keep on disapearing.
    thanks

    I also have this problem.
    I have 20+ sites that I manage in Dreamweaver CS4 (Version 10 build 4117). Most sites remember code collapse fragments on all files, but I have one site that only partially works. There are two files in particular that show code collapse errors. I can collapse either using the Code Collapse Full Tag button, or I can collapse a selection while I am working on the file. But if I close and reopen, the code collapse fragments are forgotten - this happens even if I save the doc. How do I troublehoot / fix code collapse errors?
    Thanks for your help!
    Jason

  • The expand on Youtube is not working with many Youtube sites and they work on Internet Explorer

    On many of the sites on Youtube the expand does not work with Mozilla Firefox 4. I have gone to Internet Explorer and they work there. When I come back from Internet Explorer strange enough the expand on Firefox works. Obviously its picking up programming from Internet Explorer, unfortunately it does not last long. I've tried plug ins, reloading flash player after I deleted it and re-installed it, the problem still exist. Also on the expand screens that do work on the right side there is a very thin white line coming down the border. I'm not the only one with this problem. please help with this problem.

    Indeed, this is a bug in HTTPS-everywhere which you can see here : https://trac.torproject.org/projects/tor/ticket/4032

  • Post RH 9 Upgrade Expand All and Collapse All not working.

    After upgrading to RoboHelp 9 from 7 - the Collapse All and Expand All is not working.  I am taking over after attending a RoboHelp 9 Training Class a little over a week ago, so any help would be appreciated.

    Hi,
    What is your output? Where are the show/hide buttons placed: In the topic or in the toolbar? You're using RoboHTML right?
    Did you use any kind of twisties in your RoboHelp 7 project? The show all hide all buttons are controlled by a custom script and I'd like to know which method you are using. (If you know which.) See also http://www.grainge.org/pages/authoring/twisty/twisty.htm
    If you're not sure which method you are using, can you post the HTML of the show/hide all button/link?
    Greet,
    Willam

Maybe you are looking for