How to get the parent of a component in fx?

Here is an example:
Index.fx:
Stage {
    title: "Online book library";
    width: 1024
    height: 768
    scene:Scene {
    fill: Color.WHITE
    content: [
       banner ,
       login = Login{translateX:715 translateY:135}
};Login.fx:
var logOn : Button = Button {
        translateX:25 translateY: 170
        text: "Log On"
        font: Font {size:11 name: "Verdana Bold"}
        action: function() {
            showHello();
function showHello(){
   // add a label in index.fx whose text is "welcome!";
    }I want to show something on the index.fx but I don't know how to get the parent from the child component?
In Flex, we use parent or parentApplication, Is there a similar function in JavaFX?

Reusing the same Tile example, I had no problems, I suppose I was doing wrong the first time:
def IMAGES_WIDTH = 100;
def IMAGES_HEIGHT = 100;
var COLUMN_NB = 3;
var ROW_NB = 3;
var scene: Scene;
var previews: Container;
Stage
  title: "Test of Tile layout"
  scene: scene = Scene
    width: 500
    height: 500
    fill: Color.LAVENDER
    content:
      previews = Tile
        hgap: 10
        vgap: 10
        layoutX: bind (scene.width - previews.width) / 2
        layoutY: bind (scene.height - previews.height) / 2
        columns: COLUMN_NB
        content: for (i in [ 1 .. COLUMN_NB * ROW_NB ])
          ImageView
            id: "IV{i}"
            image: Image
              url: "{__DIR__}clock.gif"
              width: IMAGES_WIDTH
              preserveRatio: true
            onMousePressed: Hide
function Hide(evt: MouseEvent): Void
  println("{evt.node} ({evt.node.id}) - {evt.node.parent}");
  var nm: Node = evt.node.parent.lookup("IV5"); // Middle node
  nm.visible = false;
  var ntl: Node = evt.node.parent.lookup("IV1"); //Top left node
  (ntl as ImageView).viewport = Rectangle2D { height: IMAGES_WIDTH/2, width: IMAGES_WIDTH/2 };
  (evt.node.parent as Tile).hgap = 20; // Strange effect, but works
}

Similar Messages

  • How to get the parent Frame of a component ?

    Hi,
    I'm wondering how to get the parent JFrame (or JDialog) of a component.
    Thanks for tips

    I'm using this code:
    public Component getFrame(Component comp)
        Component frame = comp;
        while ((frame != null) && !(frame instanceof Frame))
            frame = frame.getParent();
        if (frame == null)
            frame = comp;  // no parent found
        return frame;
    }

  • How to get the parent window in sub-child controller class in javafx?

    how to get the parent window in sub-child controller class in javafx?

    You can get the window in which a node is contained with
    Window window = node.getScene().getWindow();Depending when this is invoked, you might want to check the Scene is not null before calling getWindow().
    If the window is a stage that is owned by another window, you can get the "parent" or "owner" window with
    Window owner = null ;
    if (window instanceof Stage) {
      Stage stage = (Stage) window ;
      owner = stage.getOwner();
    }

  • How to get the parent node of the current node?

    Hi all,
    i want to get the parent node of the current node and the not the parent of the parent node.
    thank you very much

    Hi,
    the parent node of <subnode1-2>29.99</subnode1-2> is (node1), how can do to get <node1> throw <subnode1-2>29.99</subnode1-2> the sub node of <node1>.
    As per my understanding the parent node of <subnode1-2>29.99</subnode1-2> is book not the node1.
    If you want node 1 as a parent of subnode1-2 than your xml will look like this.
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <bookstore>
    <book>
    <fathernode>Harry Potter</fathernode>
    <node1>
           <subnode1>29.99</subnode1>
           <subnode2>29.99</subnode2>
    </node1>
    <node2>
           <subnode1>19.99</subnode1>
           <subnode2>19.99</subnode2>
    </node2>
    </book>
    </bookstore>
    and also if you want tom retrive float data than refer following XPATH.
    "//book[[price='1000']]/price/text()"
    Regards,
    Manoj Bilthare

  • How to get the caret position of component embedded in JTextPane?

    Hi great java developers ;-)
    I want to get the caret position of component which is embedded in StyledDocument / JTextPane.
    How has it to be done?
    Thank you very much!!!

    The Document doesn't know which textPane it belongs to. (It could even be shared by mulitple textPanes).
    You get the caret position of a any text component by using:
    textComponent.getCaretPosition();

  • How to Get the Parent - Child Relationship

    Hi ,
    In my application having 100 tables with parent - child releation ship without using casecade constraints
    i want to delete the parent with child and sub child records
    Example
    Table - 1
    parent1
    child 2
    Table - 2
    Child 1 - Parent 1
    Parent 2
    Table - 3
    Child 1 - Parent 2
    Parent 3
    Table - 4
    Child 1 - Parent 3
    How to delete the parent table ? Is it any scripts available ?
    Regards
    Sudhakar P.

    Hi,
    1) Firstly identify the parent tables using
    SELECT a.table_name, 0
    FROM user_tables a, user_tab_columns b
    WHERE a.table_name = b.table_name
    store these in one table say ID_table
    2) Identify dependent tables and sore in table say table_dependency using
    SELECT LEVEL, parenttable, parentcol, childtable, childcol
    FROM (SELECT UNIQUE parenttable, parentcol, childtable,
    b.column_name childcol
    FROM (SELECT p.table_name parenttable,
    k.column_name parentcol,
    k.POSITION pos,
    c.table_name childtable,
    c.constraint_name CONSTRAINT
    FROM all_constraints p,
    all_constraints c,
    all_cons_columns k
    WHERE p.constraint_name =
    c.r_constraint_name
    AND c.r_constraint_name =
    k.constraint_name
    AND p.constraint_type IN ('P', 'U')
    AND c.constraint_type = 'R'
    AND p.table_name != c.table_name
    ORDER BY p.table_name,
    c.constraint_name,
    k.POSITION) a,
    all_cons_columns b
    WHERE a.CONSTRAINT = b.constraint_name
    AND a.pos = b.POSITION)     
    3)Now using these details find tables without cascade rule as below
    SELECT *
    FROM table_dependency
    WHERE child_table IN (
    SELECT DISTINCT table_name
    FROM user_constraints
    WHERE constraint_type = 'R'
    AND delete_rule <> 'CASCADE'
    AND table_name IN (SELECT child_table
    FROM table_dependency)
    AND r_constraint_name IN (
    SELECT constraint_name
    FROM user_constraints
    WHERE table_name IN (
    SELECT table_name
    FROM id_table
    UNION
    SELECT child_table
    FROM table_dependency))
    AND table_name NOT IN (
    SELECT table_name
    FROM id_table));

  • [CS3] How to get the parent spread of a page?

    Hallo!
    I have the page UID.
    How to get the spread of this page?
    Thanks,
    Alois Blaimer

    You'll also need an IDataBase*, from any object in the same document.
    Then you can follow IID_IHIERARCHY one up to the kSpreadLayerBoss, two up to the kSpreadBoss or just refer to the hierarchy root.
    Dirk

  • How to Get the Parent Process ID from Child BPEL Process

    Hi All,
    We have a requirement to get the Parent BPEL Process ID from Child BPEL Process. One way is we can pass the Parent BPEL process ID from Parent BPEL Process to Child BPEL process. Is there any standard function available to get the Parent BPEL process ID from Child Process?
    P.S: We are using BPEL 10.1.3 Version.
    Please share any info on this.
    Thanks in Advance,
    Saravana

    Hi Saravana,
    The existing methods in 10.1.3x allow a following (a bit of a convoluted way):
    In a BPEL Java embedding activity, you can use the following code to get the parentProcessname:
    String parentInstanceId = getParentId();
    String parentProcessname = getLocator().locator.lookupInstance(parentInstanceId).getProcess().getProcessId().getProcessId();Hope this helps,
    Regards,
    Shanmu
    http://www.prshanmu.com/articles/

  • How to get the value from textInput Component to perform calculation?

    I need some help here...I'm trying to get the value of user input from the TextInput Component which is the age, height and weight to calculate the bmr and display the result in member("result").text.
    How am i suppose to let the integer pass through in order for me to perform calculation? Would appreciate if anyone can help me out with this, thanks!
    Below are the formula :
    The Harris Benedict equation estimates BMR:
    For women: (9.56 x w) + (1.85 x h) – (4.68 x a) + 655
    For men: (13.75 x w) + (5 x h) – (6.76 x a) + 66

    Assumed that this section is only for male ...it still show error saying script error : String expected for
    on mouseDown
       member("result").text = (13.75 * value(member("weightText").text)) + (5 * value(member("heightText").text)) - (6.76 * value(member("ageText").text)) + 66
    end
    Do i have to add in "put sprite(x).text -- where x is the number of the sprite that is the text input." ?

  • Need how to get the parent acount details in Trial balance report

    Hi All,
    I have a requirement in which i need to print the details of the parent account details as the report wont print the parent a/c details by default.
    Can any one please let me know how can i achieve this?
    Thax in advance.
    Seshu

    Generally the trial balance summary report does not fetch the parent account details.
    In my customized report , i need to get the detials of the current accounts as well as the details (initial balance,debit,credit ) for a particular period of the parent account as well.

  • How to get the parent name in the hierarchy

    Hi Colleagues.
    Im working on with java webdynpro by showing hierarchical data.
    When I select a leaf item, I should get the possible parent items.
    For Ex:
    A
    B
    C
         |
    D
    When I select D, I need to get the information as A-B-C-D.
    How can I acheive this?
    Thanks
    Rakesh

    Hi Rakesh
    You can go up to the root using the following methods:
    IDNode dNode = dElement.node();
    IWDNodeElement cElement = dNode.getParentElement();
    IWDNodeElement bElement = cElement.node().getParentElement();
    BR, Siarhei

  • How to get the parent value

    Hi
    I am using jdev 11.1.1.5
    In this i had used gl_acct_classes VO and gl_accounts VO and an updatable AccountsVO
    select * from gl_acct_classes,gl_accounts from gl_acct_classes.acct = gl_accounts.acctI have the fields gacl_id , gacl_prim_id
    In this which ever gaclid has the value null in gacl_prim_id had been consider as parent
    for eg
    sno        gacl_id       gacl_prim_id
    1             a                                       //It is consider as parent since gacl_prim_id is null
    2             o                  a
    3             e                  a                  
    //In this a is parent for o and e
    4             b                                       //parent
    5             t                   b
    6             r                   b
    // b is parent for t and rI need to get the sum of all the accounts having o,e as a class id in which a is a parent and t,r as a class id in which b is a parent
    I hope that i may be clear for u..,

    I had used ParentVO GlAccountClassVO
    I had also created a viewlink
    ParentVO.cl_id = AccountClasses.GACL_ID
    Querry for ParentVO updatable
    SELECT GlAccountClasses.GACL_ACCT_TYPE,
           GlAccountClasses.GACL_BU,
           GlAccountClasses.GACL_CRE_BY,
           GlAccountClasses.GACL_CRE_DATE,
           GlAccountClasses.GACL_DESC1,
           GlAccountClasses.GACL_DESC2,
           GlAccountClasses.GACL_GP_FLAG,
           GlAccountClasses.GACL_ID,
           GlAccountClasses.GACL_OPTYPE,
           GlAccountClasses.GACL_PRIM_ID,
           GlAccountClasses.GACL_PT_SEQ_NO,
           GlAccountClasses.GACL_SCH_NO,
           GlAccountClasses.GACL_SEQ_NO,
           GlAccountClasses.GACL_UPD_BY,
           GlAccountClasses.GACL_UPD_DATE
    FROM GL_ACCOUNT_CLASSES GlAccountClasses
    WHERE GACL_PRIM_ID is nullI had created a Transient attrbute with the following groovy expression sinct it doesnt work
    AccountClass.sum("GapbDebitAmt")

  • How to get the parent and child relation of the group (______________)

    Please teach the method of acquiring the parent and child relation of the group with EDK5.2.
    EDK5.2____________________,_________o

    Hello.
    Java________,_______________...
    Class________o
    com.plumtree.remote.auth.ChildGroupList
    ...o(^^;)
    Best Regards,
    --------- Hiroko Iida_______ (05/10/28 18:27) -------
    Please teach the method of acquiring the parent and child relation of the group with EDK5.2.
    EDK5.2____________________,_________o

  • How to get the Parent Id using Groovy script in FCRM

    Hi,
    I have created one custom object A. I related this object with Opportunity. I created one custom button in custom object. When I click the button I need to get the Optortunity Row Id and pass it to external system.
    If I define the OpportunityVO itself it throwing error.
    Our application Version : 11.1.7.0.0.
    Thanks in Advance,
    Mohan

    Hi Mohan,
    You'll have to use the internal "bindings" to get this value from the session context. As a general recommendation, look at the properties of other pages where this is included (incl. hidden) and see if you can derive the groovy expression from that. You can see an example in this video.
    Kind regards, Richard
    FA Developer Relations
    http://blogs.oracle.com/fadevrel

  • How to Get the Parent Community of a Community Using PRC

    Greetings,
    Using the PRC, I am trying to build a heirarchy table of all of the Communities a particular user has access to.
    Stated another way, I want to be able to build a tree of all of the communities a user can access, and display them in an explorer type graphical object(treeview).
    Through ICommunityManager I CAN get all of the communities (step 1). But beyond that, I am unable to find the communities' parents(I have found no way in the PRC to ask for a parent community) so I can iteratively start the treck up to the top of the heirarchy and down to the bottom.
    The Adaptive tag library has tags to get parent, sibling, and child community URL's of the current and any specific community, so I know it can be done, but the tags do not help me to build the tree beyond the current community's parent (At least I have not figured out how).
    Has anyone done anything like this? Could you direct me to the appropriate API's or approach?
    Thank You.

    Have you thought about using pt:standard.tree instead of rolling your own?
    Chris Bucchere | bdg | [email protected] | www.bdg-online.com

Maybe you are looking for

  • How do i share a single itunes library from an external hdd

    I recently switched from a PC laptop to a MacBook Pro with latest Mac OS X 10.8.2.  Instead of moving over 130GB of music from my old laptop, I thought it better/easier to create/maintain a single music source for iTunes to sync with for all my devic

  • Error  while  reading pdf file using adobe reader 8

    Hi , I am using itextsharp for creating pdf file which contains 300 pages. When I tried to open that pdf file in adobe reader 5 , there is no issue . Its opening correctly. But When I 've tried to open it using adobe reader 8 . Its opening the file b

  • Arial Unicode MS font not viewable in Adobe Reader 9

    I have created a form in Acrobat Acrobat X Pro which has some labels in Arial Unicode MS font and when i view the form in Reader 9, I'm not able to view the labels. I have Arial Unicode MS font installed on my machine. What could be the problem?     

  • Can't Print or Save in Adobe Acobat Reader DC

    I was using an older version of Acrobat reader and deleted it because it wasn't updating since 2012. I loaded the Adobe Acobat Reader and it will not print or save. Using Mac OS 10.10.2.

  • New SF300-24P 10/100 POE Switch effecting Sybase App

    I recently moved my office. I am running a small Network on Windows 8.1. The main program for my Business no longer has tech support. The program uses sybase sql anywhere 9.0 to network. When I moved from one location to another the only thing that c