XML Tree structure

Hi there,
I am in a datastructures class and we're supposed to create classes to represent an XML hierarchy in java. There is a base class that is inherited by the different node types (Document, Element, Text). Unfortunately I am running into an issue of keeping track of the parent nodes. Normally I would just create a method called setParent(Node parentNode) when addChild(Node childNode) is called. I can't do that because of how they defined the interface. Because the Node interface doesn't include that method declaration... it isn't accessible, so I'd have to cast it to the type of the base class with the setParent(Node parentNode) method. This increases the likelihood that the code would fail if a node interface type that isn't my implementation is passed into setParent().
I can't modify their interface so I am not sure what else I can do to track the parent classes. Any ideas?
P.S. They are using checkstyle which won't let you use public or protected properties.

Ok, sorry I should have put the interface on here:
public interface Node {
    int DOCUMENT_NODE = 1;
    int ELEMENT_NODE = 2;
    int TEXT_NODE = 3;
     * @return the type of this node (DOCUMENT_NODE, ELEMENT_NODE, or TEXT_NODE)
    int getType();
     * @return the parent node of this node, or null if it has no parent
    Node getParent();
     * @return the first child of this node, or null if it has no children
    Node getFirstChild();
     * @return the last child of this node, or null if it has no children
    Node getLastChild();
     * @return the next sibling of this node, or null if it has no next sibling
    Node getNextSibling();
     * @return the previous sibling of this node, or null if it has no previous sibling
    Node getPreviousSibling();
     * Inserts a new child node under the target node.
     * @param newChild the new child node to be inserted
     * @param child the child node before which the new node should be inserted
     * @throws IllegalArgumentException if newChild is null
     * @throws IllegalArgumentException if child is null
     * @throws IllegalArgumentException if child is not a child of the target node
    void insertChildBefore(Node newChild, Node child);
     * Appends a child to the target node's list of children.
     * @param newChild the new child node to be appended
     * @throws IllegalArgumentException if newChild is null
    void appendChild(Node newChild);
     * Removes a child from the target node's list of children.
     * @param child the child to be removed
     * @throws IllegalArgumentException if child is null
     * @throws IllegalArgumentException if child is not a child of the target node
    void removeChild(Node child);
     * Replaces an existing child node with a new node.
     * @param newChild the new node that is replacing the old node
     * @param oldChild the old node that is being replaced
     * @throws IllegalArgumentException if newChild is null
     * @throws IllegalArgumentException if oldChild is null
     * @throws IllegalArgumentException if oldChild is not a child of the target node
    void replaceChild(Node newChild, Node oldChild);
}

Similar Messages

  • Marshaller.marshal does not create complete XML tree structure

    Dear all,
    I use JAXB classes to create an XML document with data derived from SQL queries from a database.
    I have created a program that instantiates the JAXB classes and sets its values using the automatically created setter functions.
    However when I marshal the document the resulting XML document does not contain the inner structure of the elements needed to appear.
    It constructs the document from the root node down to the 4th level of child elements.
    Only if a run the 'marshal' operation giving as input parameter an inner element (from level 5 and down) I can see the XML structure within its inner structure.
    Does anybody have an idea what could be wrong ?

    Hi again,
    I tested the makedim example package with another of my dimensions and the XML file was updated correctly. When I try to process the dimension I mentioned before (from the admin console this time) an error of type System.OutOfMemoryException is thrown in the step "Create admin cache file". I guess that this error occurs when I run my custom package too but the package run to the end with status "Completed"...
    //Anders

  • Marhal operation does not create complete XML tree structure

    Dear all,
    I use JAXB classes to create an XML document with data derived from SQL queries from a database.
    I have created a program that instantiates the JAXB classes and sets its values using the automatically created setter functions.
    However when I marshal the document the resulting XML document does not contain the inner structure of the elements needed to appear.
    It constructs the document from the root node down to the 4th level of child elements.
    Only if a run the 'marshal' operation giving as input parameter an inner element (from level 5 and down) I can see the XML structure within its inner structure.
    Does anybody have an idea what could be wrong ?

    Hi again,
    I tested the makedim example package with another of my dimensions and the XML file was updated correctly. When I try to process the dimension I mentioned before (from the admin console this time) an error of type System.OutOfMemoryException is thrown in the step "Create admin cache file". I guess that this error occurs when I run my custom package too but the package run to the end with status "Completed"...
    //Anders

  • XML to tree structure

    Hi guys
    Not used Java in a while (or done much programming in a while to be honest) and i've been set the task of reading an XML document into a tree structure but without using any existing XML libraries. I'm a little bit stumped which line to go down and wondered if anyone had could help me out with a few suggestions as to how to tackle it.
    Many thanks

    redbulladdict wrote:
    yeah i have read the article and i get that i need to read in the first tag as the root and then add the next tag as a node and then its data as a node,Once you write the code to read a node, you just apply it recursively to these other nodes.
    then once that tag has closed, back track and the next tag as a node and so on.To back track you should just have to return from your recursive method. Returning from the method implicitly pops a stack thus returning you to the enclosing tag.
    But having real trouble making a start on the source code, can't find any good examples to get me started. My coding skills are really rusty.Can you write a simple "Hello world" program? Can you open a file, and read in one line at a time, and count the lines?
    Thanks for giving me all this help.

  • t:tree component is not rendering tree structure for my page

    Dear dudes,
    I want to create a simple tree structure in my jsf page backed by a backing bean.
    But my jsf page is getting executed but my tree is not getting displayed.
    my jsf page:<ui:composition xmlns="http://www.w3.org/1999/xhtml"
         xmlns:ui="http://java.sun.com/jsf/facelets"
         xmlns:h="http://java.sun.com/jsf/html"
         xmlns:f="http://java.sun.com/jsf/core"
         xmlns:s="http://jboss.com/products/seam/taglib"
         xmlns:rich="http://richfaces.ajax4jsf.org/rich"
         xmlns:t="http://myfaces.apache.org/tomahawk"
         xmlns:a4j="https://ajax4jsf.dev.java.net/ajax">
    <f:view>
         <html>
              <body>
                   <h:form>
                        <t:tree id="tree" value="#{mytreeBean.myTree}" styleClass="tree"
                             nodeClass="treenode" selectedNodeClass="treenodeSelected"
                             >
                        </t:tree>
                   </h:form>
              </body>
         </html>
    </f:view>
    </ui:composition>Mybacking bean:
    package org.test.tree;
    import java.util.Iterator;
    import java.util.List;
    import org.apache.myfaces.custom.tree.DefaultMutableTreeNode;
    import org.apache.myfaces.custom.tree.model.DefaultTreeModel;
    import com.srit.framework.web.BasePage;
    import com.srit.healthcare.common.lookupentity.repository.ILookupRepository;
    import com.srit.healthcare.common.tree.domain.RcareTree;
    public class MyTreebean {
         private DefaultTreeModel myTree;
         public DefaultTreeModel getMyTree() {
              return myTree=getTreeModel();
         public void setMyTree(DefaultTreeModel myTree) {
              this.myTree = myTree;
         /*public MyTreebean() {
              DefaultMutableTreeNode root = new DefaultMutableTreeNode("XY");
              DefaultMutableTreeNode a = new DefaultMutableTreeNode("A");
              root.insert(a);
              DefaultMutableTreeNode b = new DefaultMutableTreeNode("B");
              root.insert(b);
              DefaultMutableTreeNode c = new DefaultMutableTreeNode("C");
              root.insert(c);
              DefaultMutableTreeNode node = new DefaultMutableTreeNode("a1");
              a.insert(node);
              node = new DefaultMutableTreeNode("a2 ");
              a.insert(node);
              node = new DefaultMutableTreeNode("b ");
              b.insert(node);
              a = node;
              node = new DefaultMutableTreeNode("x1");
              a.insert(node);
              node = new DefaultMutableTreeNode("x2");
              a.insert(node);
              myTree = new DefaultTreeModel(root);
         public DefaultTreeModel getTreeModel() {
              DefaultMutableTreeNode root = new DefaultMutableTreeNode("XY");
              DefaultMutableTreeNode a = new DefaultMutableTreeNode("A");
              root.insert(a);
              DefaultMutableTreeNode b = new DefaultMutableTreeNode("B");
              root.insert(b);
              DefaultMutableTreeNode c = new DefaultMutableTreeNode("C");
              root.insert(c);
              DefaultMutableTreeNode node = new DefaultMutableTreeNode("a1");
              a.insert(node);
              node = new DefaultMutableTreeNode("a2 ");
              a.insert(node);
              node = new DefaultMutableTreeNode("b ");
              b.insert(node);
              a = node;
              node = new DefaultMutableTreeNode("x1");
              a.insert(node);
              node = new DefaultMutableTreeNode("x2");
              a.insert(node);
              return myTree = new DefaultTreeModel(root);
    }Also i've configured my tomahawk-taglib file in my web.xml .
    My backing bean is configured in my faces-config.xml
    But i'm not able to get my tree structure in my page .
    Any help would be appreciated.
    Regards

    Dear akash,
    yes i'm seeing the jsf tags <t:tree>
    But when i modify my jsf page , in my configuration files i'm getting the following errors:
    In web.xml
    <web-app xmlns="http://java.sun.com/xml/ns/j2ee"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
         version="2.4">
    </web-app>
    error message:  cannot find the declaration of element web-apps
    error message: failed to read schema document http://java.sun.com/xml/ns/j2ee             http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd  because 1) couldnot find the document 2) the document could not be read 3) the root element of the document is not <xsd:schema>In another configuration file:
    <?xml version="1.0" encoding="UTF-8"?>
    <beans xmlns="http://www.springframework.org/schema/beans"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xmlns:aop="http://www.springframework.org/schema/aop"
         xmlns:tx="http://www.springframework.org/schema/tx"
         xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
                http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd
                http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.0.xsd">
    Error: cannot find the declaration of element 'beans'I'm a novice to JSF technology and plz guide me properly.

  • Navigate in XML tree

    Hi
    I use oracle 10g.
    what is the best tool to navigate in XML tree and to analize it.when I dont no the exact structure of the xml.
    for example
    I need to do some action like DFS search and to set whiget to each tag
    is dbms_xmldom is the only option or there is some more simple component?
    Kfir

    What do you mean by "navigate"? Anyway currently there are 4 products that come to mind...
    1) SQL Developer 1.1 (freeware) you can find it here: http://sueharper.blogspot.com/2006/11/oracle-sql-developer-11-evaluation.html
    2) JDeveloper: download it via otn.oracle.com
    2) Latest version of TOAD (use google to find it)
    3) XMLSpy from Altova (use google to find it)

  • Tree structure of portal application in NWDS

    Hi all,
    Im new to portal applications and I did not under stand the tree structure that appears after we start portal application in ep perspective in NWDS. Especially the PORTAL-INF and src.code in the tree structure .If any body has any relevant information or document about it please send me.

    portal applications are same as the Web applications developed in Java, JSP ....
    PORTAL-INF is same as the WEB-INF in normal web application structure.
    in Web application we create .war file whereas here we create as .par file.
    in web application we have web.xml inside WEB-INF folder where as here we have portalapp.xml.
    src.core and src.api is used as the source code folder.
    You can check this in "Java Build path" if u go to the project properties.
    Hope this give u a small idea on portal files structure.
    cheers.
    Chinmaya
    Reward points for hellpful answers.

  • Dynamic tree structure (expand/collapse)

    i want to do one tree struc example (expand /collapse)
    using xml;
    like
    WOrld
    |
    |
    ----INDIA
    |
         -------Andhrapradesh
    |
              |
    -----------------Hyderabad
              |               |                         |           Visakhapatnam
              Karnataka
    |
              |                    
    Tamilnadu
    America
    |
    Australia
    in the frame at left side tree structure will be there ;when i click world hyperlink and at the right side one forum will come like this;
    country name ---------
    description ---------
    when i enter america and enter submit;the country should come in the left frame;i will refresh left frame when click submit;ofcourse i know that;like wise when i click state hyperlink
    state name ---------
    description ---------
    statename should come under state tree node;
    i will also maintain this info in database also;i am using oracle9i;how can i do this the tree structure;how to approach;if anybody give me any links revelant to this?atleast give me some idea what to do?please dont give me the DOM tutorial or SAX Tutorial cos i already gone through but i didnt get any idea.
    bye
    chaitanya

    Initailly set xerces.jar (parser, freeware download from apache site) to calss path
    Suppose
    <WORLD>
    <INDIA>
    <ANDHRA>abc</ANDHRA>
    <VISHAKHA>fsdfd</VISHAKHA>
    <UP>dss</UP>
    </INDIA>
    <USA>
    <FLORIADA>bsbs</FLORIADA>
    <NEWYORK>dsds</NEWYORK>
    </USA>
    </WORLD>
    try{
    dbf = DocumentBuilderFactory.newInstance();
    db = dbf.newDocumentBuilder();
    mapDocument = db.newDocument();
    Element worldElement = mapDocument.createElement("WORLD");
    Element indiaElement = mapDocument.createElement("INDIA");
    Element andhraElement = mapDocument.createElement("ANDHRA");
    andhraElement.appendChild(mapDocument.createTextNode("sdsd");
    Element vishakhaElement = mapDocument.createElement("VISHKHA");
    vishkhaElement.appendChild(mapDocument.createTextNode("sdfdf");
    Element upElement = mapDocument.createElement("UP");
    upElement.appendChild(mapDocument.createTextNode("fsfs");     
    indiaElement.appendChild(andhraElement)
         .appendChild(vishkhaElement)
         .appendChild(upYElement)
    //lly do for usaELement
    //finally add indiaElemebnt and usaElement to worldElement                    
    worldElement.appendChild(indiaElement)
         .appendChild(usaElement)
    mapDocument.appendChild(worldElement);          
    }catch(FactoryConfigurationError fce){
         fce.printStackTrace();
    }catch(ParserConfigurationException pce){
    pce.printStackTrace();
    I think this u need

  • Generate Tree Structure from DB - XSQL??

    We have a table that contains a tree structure using Parent/Child fields. We use "Connect By" to extract this in normal applications to show in a tree control.
    We now want this in XML format output by our web server, where a client side app running in the browser can load this.
    I have looked at XSQL utility but it looks to only generate a simple flat structure.
    Anyone have an idea of how to automatically create a tree structure straight from the DB?
    Thanks
    Rob

    You downloaded the wrong XML Parser!
    XSQL requires Java Parser. Well, there's a copy included with the XSQL package so you actually don't need to do another download.
    You really don't need XSQL if you just want a XML file from DB, you just needed a XML SQL Utility. Download that and run the samples.

  • How to  create Tree Structure for given data?

    Hi,
    I have to create a tree structure of Folders and the contents in the Folder.
    I have a XML, it contains data for the tree structure to display. How can I create a tree structure which would look like below
    Parent
       Child
         Supporting Views
            Raw eInfotree Table Views
            Background Calculations
            QC Data Views
         Calculation Views
         Unit Operation Views
            Cell Culture Views
            Purification Views
            MFR Views
         Personal Views
    All the nodes should have folder Icon.
    Please find the XML as
    <?xml version="1.0" encoding="UTF-8"?><Rowsets DateCreated="2007-05-02T07:37:37" EndDate="2007-05-02T16:59:53" StartDate="2007-05-02T16:59:53" Version="11.5.3"><Rowset><Columns><Column Description="" MaxRange="1" MinRange="0" Name="TK" SQLDataType="4" SourceColumn="TK"/><Column Description="" MaxRange="1" MinRange="0" Name="NAME" SQLDataType="1" SourceColumn="NAME"/><Column Description="" MaxRange="1" MinRange="0" Name="TYPE" SQLDataType="1" SourceColumn="TYPE"/><Column Description="" MaxRange="1" MinRange="0" Name="PK" SQLDataType="4" SourceColumn="PK"/></Columns>
    <Row><TK>1</TK><NAME>Parent</NAME><TYPE>F</TYPE><PK>0</PK></Row>
    <Row><TK>2</TK><NAME>Child</NAME><TYPE>F</TYPE><PK>1</PK></Row>
    <Row><TK>3</TK><NAME>Supporting Views</NAME><TYPE>F</TYPE><PK>2</PK></Row>
    <Row><TK>4</TK><NAME>Raw eInfotree Table Views</NAME><TYPE>F</TYPE><PK>3</PK></Row>
    <Row><TK>5</TK><NAME>Background Calculations</NAME><TYPE>F</TYPE><PK>3</PK></Row>
    <Row><TK>6</TK><NAME>QC Data Views</NAME><TYPE>F</TYPE><PK>3</PK></Row>
    <Row><TK>7</TK><NAME>Calculation Views</NAME><TYPE>F</TYPE><PK>2</PK></Row>
    <Row><TK>8</TK><NAME>Unit Operation Views</NAME><TYPE>F</TYPE><PK>2</PK></Row>
    <Row><TK>9</TK><NAME>Cell Culture Views</NAME><TYPE>F</TYPE><PK>8</PK></Row>
    <Row><TK>10</TK><NAME>Purification Views</NAME><TYPE>F</TYPE><PK>8</PK></Row>
    <Row><TK>11</TK><NAME>MFR Views</NAME><TYPE>F</TYPE><PK>8</PK></Row>
    <Row><TK>12</TK><NAME>Personal Views</NAME><TYPE>F</TYPE><PK>2</PK></Row>
    </Rowset>
    </Rowsets>

    Vishal,
    If you structure your data with two columns, the first being the Node name and the second being the Parent node name (see your information below), the iBrowser applet will make a nice data driven tree with all of the SelectionEvent or navigational capabilities you want.
    <?xml version="1.0" encoding="UTF-8"?>
    <Rowsets DateCreated="2007-05-02T07:37:37" EndDate="2007-05-02T16:59:53" StartDate="2007-05-02T16:59:53" Version="11.5.3">
    <Rowset><Columns><Column Description="" MaxRange="1" MinRange="0" Name="NAME" SQLDataType="1" SourceColumn="NAME"/><Column Description="" MaxRange="1" MinRange="0" Name="PARENT" SQLDataType="1" SourceColumn="PARENT"/></Columns>
    <Row><NAME>Parent</NAME><PARENT></PARENT></Row>
    <Row><NAME>Child</NAME><PARENT>Parent</PARENT></Row>
    <Row><NAME>Supporting Views</NAME><PARENT>Child</PARENT></Row>
    <Row><NAME>Calculation Views</NAME><PARENT>Child</PARENT></Row>
    <Row><NAME>Unit Operation Views</NAME><PARENT>Child</PARENT></Row>
    <Row><NAME>Personal Views</NAME><PARENT>Child</PARENT></Row>
    <Row><NAME>Raw eInfotree Table Views</NAME><PARENT>Supporting Views</PARENT></Row>
    <Row><NAME>Background Calculations</NAME><PARENT>Supporting Views</PARENT></Row>
    <Row><NAME>QC Data Views</NAME><PARENT>Supporting Views</PARENT></Row>
    <Row><NAME>Cell Culture Views</NAME><PARENT>Unit Operation Views</PARENT></Row>
    <Row><NAME>Purification Views</NAME><PARENT>Unit Operation Views</PARENT></Row>
    <Row><NAME>MFR Views</NAME><PARENT>Unit Operation Views</PARENT></Row>
    </Rowset>
    </Rowsets>
    Regards,
    Jeremy

  • Creating Tree Structure in VC

    Hello,
    Do you know how to create Tree like structure in Visual Composer. Tree should contain XML data coming from Web Service.
    Thanks,
    Prashant

    Hi Prashant,
    we have already a discussion about trees in VC [here|How to create Tree structure in Visual Composer;.
    Best Regards,
    Marcel

  • Loading in tree structure from arraylist

    Hi,
    I have a ArrayList contains xml file path like
    ArrayList al={"/folder1/sub1/sub11/1.xml",
    "/folder1/sub1/2.xml,
    "/folder1/test1/3.xml",
    "/folder2/sub2/4.xml",
    "/folder2/sub2/sub3/5.xml"}
    Note: 1.This arraylist objects are dynamically loaded.
    2.The objects in array list are not file system directory path like (e.g., C:/folder1/sub1/.....). Its string added in arraylist.
    using this arraylist i want to load it in jsp tree structure, like
    folder1
    |___sub1
    | |_sub11
    | | |__1.xml
    | |_2.xml
    |___test1
    |_3.xml
    folder2
    |
    |_sub2
    |___4.xml
    |___sub3
    |___5.xml
    Can any one help me with logic or predefined function in java to iterate each string array object and split parent and sub child folder and load it in tree.
    Edited by: manjunath_2284 on Aug 11, 2009 6:04 AM

    Create a Node class that has a name and Map<String, Node> as children.
    Iterate over the list, split each entry on "/", and place the parts that you get into the Node structure.

  • Can we change the Bill/Payment tree structure on Control central page?

    Can we change the Bill/Payment tree structure on Control central page to Bill/Payment Tree containing a single node for all A/R related activities for a specific bill period, in reverse chronological order. Basically the tree should look like
    + Bill - Date: 03-17-2010 Complete
    +++++ CR Note - Date: 05-04-2010 Complete
    ++++++++++ Pay - Date: 05-04-2010 Frozen
    + Bill - Date: 03-17-2010 Complete
    +++++ Pay - Date: 05-04-2010 Frozen
    I have tried changing controlCentralBPTree.xml but if I do that the tree is not expanding its just collapsed I m not able to expand.
    So do I need to change some other file to change the tree structure and look like above?

    Hello CHS.
    I tested your project but to change the label and has not worked.
    I tried running the Application Module and test the ViewCriteria, and show correctly the labels defined in control hint of bind variable.
    Again, I think the component af:query should do the same, but does not work.
    Any Oracle ACE Director some could verify this problem?
    thank you very much

  • Creating a tree structure in jsp- URGENT

    Hi,
    I need to create a tree structure using jsp. Can anybody help me out.
    Thanks in advance.

    to do what? to store what? be more specific dude. As a first suggestion use XML.

  • Create xml tree

    Hi, I am trying do small application for showing tree structure of XML documents.
    And how can I create tree of xml document with bad structure?
    I can do it, when the xml file is correct. But I cannot make xml tree when the document has wrong tags:
    <rt>
         <aaa>
              text
              <bbb>
              <ccc />
              <ddd>text</aaa></ddd>
    </rt>I know, it is bad xml document, but is there any way how to create tree? Samething like this:
    rt
         +aaa : ERROR
         -bbb : ERROR
         -ccc
         +ddd
              -aaa : ERRORI use these metods and at first build xml:
         public void buildXML(String fileName) {
              try {
                   SAXBuilder builder = new SAXBuilder();
                   builder.setValidation(false);
                   doc = builder.build(fileName);
              } catch (JDOMException e) {
                   e.printStackTrace();
              } catch (IOException e) {
                   e.printStackTrace();
              root = doc.getRootElement();
         }then I get xml tree:
         private DefaultMutableTreeNode tNode = new DefaultMutableTreeNode();
         public DefaultMutableTreeNode getTreeNode() {
              tNode.removeAllChildren();
              makeTree(root, tNode);
              return tNode;
         private void makeTree(Element el, DefaultMutableTreeNode tn) {
              DefaultMutableTreeNode tn_2 = new DefaultMutableTreeNode(el.getName());
              tn.add(tn_2);
              Attribute attr;
              for (int i = 0; i < el.getChildren().size(); i++) {
                   Element el2 = (Element)el.getChildren().get(i);
                   if (el2 instanceof Element) {
                        makeTree((Element)el2, tn_2);
         }can anybody help me, please?

    The question makes no sense. You display something that isn't tree-structured data and ask if there is any way to display it in a tree structure. Well, no, there isn't.
    And also, no XML parser will complete parsing of a malformed XML document. It's against the rules.

Maybe you are looking for

  • How can I stop iPhone from prompting me for a phone password?

    I used to use a password to protect my iPhone but I turned it off because it really slowed me down. Under General I set Passcode Lock to OFF. I set the Auto-Lock to NEVER. But every time I touch the phone icon I get this message: PASSWORD INCORRECT E

  • Satellite P870-026 Win 8.1 - no mirror screen to TV using Intel WiDi

    I have followed the Windows procedures to mirror my Satellite P870-026 screen to a new Samsun TV with mirroring capability. The process is under the Charms menu and then to select Devices, Project, Add a Wireless Display. The first few times I tried,

  • Passing info from a XML file to URLloader

    I am new to Flex (And programming alltogether), so please excuse my ignorance when asking this question; but I have to start somewhere. :-) I have an application using HTTPService that pulls information from a XML file and displays an image and text

  • Help with view link

    Hi, I have created a view link in the bc4j layer based on 2 views created in bc4j. It is kind of master detail, 2 different tables but I want to change the display of it into a single table. For each master record in a table, I want to display detail

  • Popup window for button

    if i click on delete(BUTTON) it should popup a window ask for confirmation.. how to create tat..