Keeping expended leaf node when reloading page for TreeNodeType

Hi all,
My page with context is:
-TREE (node)
  ---TREENODE (node)
CHILDNODE (node)
name (attribute)
value (attribute)
I map this context into TREE as below:
-TREE (element type: TREE; dataSource : TREE)
---TNT_NODE (element type: TreeNodeType; dataSource: TREENODE; hasChildren: TRUE )
---TNT_CHILDNODE (element type: TreeNodeType; dataSource: CHILDNODE; hasChildren: FALSE)
Everything is ok, but my issue is:
How TNT_NODE keep expanded (show child node as TNT_CHILDNODE) when page is reloaded? Now TNT_NODE collapse its leaf node when page reload. I tried using EXPANDED but it expands all nodes that is not my desire.
Please give me your advice.
Regards,
Ken

my issue is resolved

Similar Messages

  • How to get Value of tree node without Reload Page

    hi,
    i worked with apex 4.2 and i created Tree and tabular form to retrieve the date according the value of tree select node the code of tree something like this
    select case when connect_by_isleaf = 1 then 0
    when level = 1 then 1
    else -1
    end as status,
    level,
    "ENAME" as title,
    null as icon,
    "EMPNO" as value,
    null as tooltip,
    'f?p=36648:34:5234984107903::::P40_SELECTED_NODE:'||empno as link
    from "DEPT"."EMP"
    start with "MGR" is null
    connect by prior "EMPNO" = "MGR"
    order siblings by "ENAME
    and i put Selected Node Page Item: P40_SELECTED_NODE . the tree worked good and retrieve the data into tabular form according to tree node value
    my Question :
    1- i want to retrieve the data without submit the page where each time i select value from tree make page reload to update the tabular form with new value ,there is any way to pass the value of tree node to P40_SELECTED_NODE item and refresh tabular form without page reload .
    2- i want when selected from tree run page process according to value of tree node i tray to create Dynamic action with *(jquery selector : div.tree li>a)* but the Value of node incorrect.
    Regards
    Ahmed;

    look at this link
    Re: How to get Value of tree node without Reload Page ..!

  • How to test a 'leaf' node when parses a DTD?

    Hi All:
    Suppose I have <!ELEMENT Name (#PCDATA)> in my dtd. What is the correct way to test the node is a 'leaf' node? I am thinking to use ElementDecl.ELEMENTS to eliminate leaves. Is it correct? As far as I see, the type of leaves is ElementDecl.MIXED. Please verify.
    Thanks!
    Frank

    Hello Sai,
    I am afraid you have posted your question in the wrong forum. This forum is about Oracle On Track Communication, a next-generation social enterprise collaboration product.
    Please re-post your question in an ADF related forum and I am sure someone will be able to answer.
    Thank you,
    Ernst.

  • Mac OS X keep getting error message when extracting files for trail version of CS5 master suite.

    Mac OS X keep getting error message when extracting files foUsingr trail version of CS5 master suite. I deleted all Adobe files and tried again several time and keep getting the same results.

    What error message are you receiving?  What version of Mac OS do you have installed?

  • [TreeNodeType] Keeping expended items (children) when tree reload

    Hi all,
    My page with context is:
    -TREE (node)
    ---TREENODE (node; data is load by Supply Function)
    CHILDNODE (node; data is load by Supply Function)
    name (attribute)
    value (attribute)
    I mapped this context into TREE as below:
    -TREE (element type: TREE; dataSource : TREE)
    ---TNT_NODE (element type: TreeNodeType; dataSource: TREENODE; hasChildren: TRUE )
    ---TNT_CHILDNODE (element type: TreeNodeType; dataSource: CHILDNODE; hasChildren: FALSE)
    It runs ok, but my request is:
    Keep items (children) of TNT_NODE expand (open) when tree reload or Load and expand current node automatically when tree is reloaded.
    Please give me your advice.
    Regards,
    Ken

    Hi,
    I am not sure wether you have binded the prperties like 'Is child', 'Expanded', "Parent Key ', 'Key',  or not . If you have binded these values then when the child elements are loaded then when u are loading the child elements then you can append the value as expanded 'abap_true' or as  ' X' that means when u try to upload the child elements then the the child elements will be expanded defaultly.
    Hope this may help you.
    Have A Good Day.
    Regards,
    Sana.

  • Is there a way to keep animated gifs moving when a page loads? At some point it just stops but the next page is still loading

    I am working on creating a website that has this "loading" image gif when I go to another page (php). Yes, ajax is cooler but i'm no expert and seo thing keeps me from using it thus i'd go for something this simple. I already tried and realized it works on chrome but not on firefox, what am I missing? Not even sure if this is the right place to ask

    A good place to ask questions and advice about web development is at the mozillaZine Web Development/Standards Evangelism forum.
    The helpers at that forum are more knowledgeable about web development issues.
    You need to register at the mozillaZine forum site in order to post at that forum.
    See http://forums.mozillazine.org/viewforum.php?f=25

  • I keep getting an error when uploading documents

    I keep getting an error when uploading pages, keynote, or word documents into icloud.com. It won't tell me what type or error and it acts like it loads and gets all the way to the end of the bar and then says "error please try again." Please help!

    Have you tried a different web browser when submitting your proof of eligibility?

  • I couldn't find the "Reload Page" icon and went to "Customize" found it and moved it to the top tool bar but when I clicked "Done" it dissapeared. It won't stay visible. How can I keep it there for my use?

    I have V6 of Firefox and never had to worry about the "Reload Page" icon before so when I upgraded to V6 I was sorry to see that it was gone. Also the "Page Back" arrow isn't lit up and won't work. I have to go to the history and go back using that.. what happened to the back arrow? Now there are 2 clicks instead of one?
    I went to the "customize Toolbar" and moved the "reload Page" icon back to the top and it disappeared when I was done. How can I keep the "Reload Page" visible and useful?

    You see the orange (on Linux gray) Firefox button if the Menu Bar is hidden (View > Toolbars > Customize or right-click a toolbar).<br />
    If you need to access the hidden Menu bar then press F10 or hold down the Alt key to make the Menu Bar appear temporarily.<br />
    You only see the Bookmarks menu button if the Menu bar is hidden.

  • APEX Tree.  Keep focus on expanded leaf node.

    How do I prevent my tree from jumping back to the top when I expand a leav node that is below the screen scroll. I have a single parent of CORP with about 30 leaf nodes as its direct children. I have to scroll down to expand a node towards the bottom of the list. When I scroll down and expand, the page refreshes and jumps back to the top so now I have to scroll down again to expand the next node, etc. My current Tree Qurey is like
    select CHILD_ID id,
    PARENT_ID pid,
    CASE WHEN CHILD_ID = :P23_TARGET THEN
    CASE WHEN :P23_STATUS = 'Target Up' THEN
    '<span styl="color:green;">' || ITEM_NAME || '</span>'
    ELSE ITEM_NAME
    END
    ELSE
    ITEM_NAME
    END name,
    'f?p=&APP_ID.:23:'||:SESSION||'::NO::P23_TARGET:'||CHILD_ID link,
    null a1,
    null a2
    from CORP_SVR_HRCHY_VW

    Hi,
    You have to use the Anchor ID functionality of a browser - this allows you to add #id to the end of the url where id refers to the id attribute of the item that should receive the focus when the page is reloaded.
    As an example: [http://apex.oracle.com/pls/otn/f?p=33642:200]
    This, of course, requires a bit of setting up, but is easily doable.
    For this example, my SQL statement for the tree is:
    SELECT 1 ID, NULL PID, 'Top' NAME, NULL LINK, NULL A1, NULL A2 FROM DUAL
    UNION ALL
    select "EMPNO" id,
           1 pid,
           "ENAME" name,
           'f?p=' || :APP_ID || ':200:' || :APP_SESSION || '::::P200_EMPNO:' || EMPNO || '#node' || EMPNO link,
           'node' || EMPNO a1,
           null a2
    from "#OWNER#"."EMP"You will note that the URL contains *'#node' || EMPNO* at the end of the link - for an EMPNO of 1234, this would add *#node1234* to the end of the URL. You will also note that I've added *'node' || EMPNO* to the A1 column - whatever I add into this column becomes available for use in the output by referencing it as #A1# in the template. On the tree's template definition, wherever there is an A tag, I've included:
    ID="#A1#"as an attribute of the tag. For example, on the "Name Link Anchor Tag" setting, I have:
    &lt;a href="#LINK#" ID="#A1#"&gt;#NAME#&lt;/a&gt;and, wherever #A1# appeared outside of an A tag, I have removed it (otherwise, the "node1234" text would appear at that point in the page).
    Andy

  • How do I use icloud to restore my documents that were in Pages? Pages got stuck in "waiting" to update and when nothing else worked I deleted it and reloaded Pages. I don't want to restore everything just my Pages documents.

    How do I use icloud to restore my documents that were in Pages? Pages got stuck in "waiting" to update and when nothing else worked I deleted it and reloaded Pages. Everything I can find is about wiping everything out and restoring everything. I don't want to restore everything just my Pages documents (and numbers and keynote that also locked up during updating).

    What I meant is turn off Documents and Data in iCloud in OS X. Keep it on on your iOS devices. iCloud will sync documents between the iOS devices and make them available on the iCloud web site, but it won't mess up iWorks' open and save dialog boxes. It also won't assume that you want all your documents in iCloud, which I think is undesirable anyway.
    Keep iOS and OS X separate, and use the web site to move files between the two as necessary.
    iOS iWork is different from OS X iWork. There are fewer fonts on an iOS device. iOS iWork programs have slightly different feature sets than OS X iWork programs, and the file formats are different. iCloud automatically converts the file format when necessary, but if you make a habit of saving things directly to iCloud, you are limited to the lowest common denominator between the two versions of iWorks. So why would anyone want iWork on the Mac to open and save documents on iCloud by default?
    If you want to store files in the cloud and sync them on your Macs, SugarSync is a much better solution. It lets you choose your sync folders, it doesn't make you reorganize your files, it lets you sync all file types, it doesn't convert files to a different format and back, and it stores everything in the cloud, too. Just the simle act of saving a file backs it up and syncs it. I wouldn't live without it. iCloud is best with iTunes purchases and synchronizing Mac settings and iOS files; I woudln't live without it. The two make an unbeatable combination.

  • How to keep Korean fonts when converting .pages file to .epub file

    Hi, I am also asking about embedding Korean fonts other than English when converting .pages file to .epub file.
    I really like to use application for Mac in order to make certain file format for e-books though there seems to be some problem that should be improved.
    Please answer to my question and help me to find the best way to make .epub file with Mac.
    37Fides

    You should have no problem keeping your text in Korean when you convert to .epub from .pages.  Are  you saying that the Korean is converted to something else?   Please provide more details about what is not working the way you want.
    Pages can't embed fonts, you would have to use another app.  But there is no need to embed fonts to create Korean books.

  • When images appear for a search in safari, you must continually scroll by finger to keep the images loading. Is this a bug?

    When images appear for a search in safari, you must continually scroll by finger to keep the images loading. Is this a bug?

    Tried that but no change. Details - open up safari and go to yahoo - for the main search at the top, I put in Bears. It shows pages of thumbnail pics. tapping once on a thumbnail gets you that image and then tap again to get added info. At that point, it fills the screen. But in  order to see more info I have to drag a finger upward to reveal more of the details. I then have to continually do that in order to reveal more details for the searched item. It then pops up to the top each time and repeating that process many times in order to see more of the image data. Don't know how to fix this.
    Thanks

  • FireFox keep saying "unexpected error" when trying to print web pages.

    FireFox keep saying "unexpected error" when trying to print web pages. The print preview works OK, but when you try to print that "unexpected error" jumps up.
    Please email me on what to do to get FireFox to work.
    I don't see anything in the FAQ that might help me.

    Hi,
    Please also try this setting: Windows start menu or Control Panel > '''Devices and Printers''', right-click the printer > '''Printer properties''' > '''Advanced''', and select '''Start printing after the last page is spooled'''. In this case you can also close Firefox after spooling is over (usually much faster than direct printing), and printing will continue.
    Also as a general case, if you have security software (antivirus, firewall etc.) installed, you can try deleting all existing instances of Firefox and its related processes/files in all the different configuration modules/areas of the security software like process monitoring, sub/spawned process control, virtualization, HIPS etc., in addition to the security software's main configuration panel. Instead create new fully allowed/trusted rules for Firefox + its related processes in all the different modules/panels - a genuine/original Firefox installer as well as all the installed EXEs (Application) and DLLs (Application extension) are digitally signed by Mozilla Corporation (right-click > Properties > Digital Signatures). Even otherwise, some security software may also ask again when Firefox and/or its sub processes are started, and you may be able to allow/trust at that time. Please see [https://support.mozilla.org/en-US/kb/Firewalls this].
    [http://kb.mozillazine.org/Firewalls AV/Firewalls Configuration]

  • Error when defining successor for node

    Experts,
    We are having a problem with one of our workflows that keeps erroring whenever we try to complete it.  The error message states "Error when defining successor for node 0000000159".  This error does not occur in 4.6c environment and the workflow is working fine.  However, our team is in the process of upgrading to ECC 6.0 and the workflow is not working properly in that environment.  The workflow is designed for BO BUS2038 and the error occurs when we try to close all tasks and complete the workflow.  Can someone direct us to something that we can check, we've pretty much exhausted all our options?  Thanks.

    Hi Teferi,
    This problem occurs in ECC 6 when a step with Synchronous Task/Method does not have the Step executed outcome activated (this is allowed in 4.6C for synch task with terminating events). Check if your Task/method is synchronous.
    Cheers,
    Ramki Maley.

  • Yahoo signin page keeps popping up as my home page when it is not

    my home page is my.yahoo.com but the yahoo sign-in page keeps popping up as my home page now. why did it change and keep changing

    Details like websites remembering you (log you in automatically) are stored in a cookie.
    *Create a cookie 'allow' exception to keep such cookies, especially in case of secure websites and when cookies expire when Firefox is closed.
    *Tools > Options > Privacy > Cookies: Exceptions
    In case you are using "Clear history when Firefox closes":
    *do not clear the Cookies
    *do not clear the Site Preferences
    *Tools > Options > Privacy > Firefox will: "Use custom settings for history": [X] "Clear history when Firefox closes" > Settings
    *https://support.mozilla.org/kb/Clear+Recent+History
    Note that clearing "Site Preferences" clears all exceptions for cookies, images, pop-up windows, software installation, and passwords.
    Clearing cookies will remove all specified (selected) cookies including cookies with an allow exception that you want to keep.

Maybe you are looking for

  • How to run a SQL query which is stored in a column using PL/SQL?

    Hello I have a table A and one of the column values is select * from emp where empno :=xyz; Now I would like to call this SQL query using a cursor in PL/SQL and run this for all the empno's and insert them into a temp table. Can anybody help me in wr

  • B1WS - (401)Unauthorized Error while accessing Webservice from JAVA

    Hi, While accessing B1WS getting the following error. Please help us to resolve the error {http://xml.apache.org/axis/}HttpErrorCode:401 (401)Unauthorized     at org.apache.axis.transport.http.HTTPSender.readFromSocket(HTTPSender.java:744)     at org

  • Is it necessary to prepare objects if use dbms_apply_admin to instantiation

    Metalink says instantiation of database objects for Oracle Streams involves the steps as: 1. Prepare the objects for instantiation at the source site. 2. Create a copy of the objects at the destination site (ifnecessary). 3. Set the instantiation SCN

  • OCI Release 9.0.1 with Oracle 8i

    Consider the following situation: oracle8i (8.1.7) server on a win2000 machine there is an application using oci8 on another machine (linux) with the oracle 8.1.7 client libraries (there is no support for "scrollable" cursors) My question is: If i ch

  • Xp looses connection during processing

    I'm a new iPad 2 owner and I am trying to update the iPad operating system to 4.3.3 using the iTunes program. I am running an older but up-to-date Windows XP Home system. I'm out in the sticks, so downloads are a little slower than city folk might be