• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Paul Clapham
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Roland Mueller
  • Piet Souris
Bartenders:

i want to build an application in a tree format?

 
Ranch Hand
Posts: 261
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
i want to build an application in a tree format, which is part of my web application?
for example : windows registry
can anyone suggest me the some ideas?
 
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Are you looking for
  • a tree data structure (client or server?)
  • a tree GUI element in HTML/CSS/JavaScript
  • information on persistently storing tree data
  • or something else?
  • Let us know what you have so far.
     
    Abhishek Reddy
    Ranch Hand
    Posts: 261
    • Mark post as helpful
    • send pies
      Number of slices to send:
      Optional 'thank-you' note:
    • Quote
    • Report post to moderator
    thanks for the reply

    It is a web application and has to be done on server side.

    for example:
    the user will select a tree element, based on it the content has to be displayed on the right side.(the content displayed will be retrieved from the database.)
     
    Abhishek Reddy
    Ranch Hand
    Posts: 261
    • Mark post as helpful
    • send pies
      Number of slices to send:
      Optional 'thank-you' note:
    • Quote
    • Report post to moderator
    thank you Ulf Dittmer for the reply.

    the tree has to be build dynamically, the tree elements will be obtained from the database.
    i.e if the user selects a particular tree element, its sub elements will be retrieved from the database and based on the selected sub element its respective contents will be displayed on the right side.

    can you suggest me some libraries?
     
    Ranch Hand
    Posts: 354
    Eclipse IDE Oracle Java
    • Mark post as helpful
    • send pies
      Number of slices to send:
      Optional 'thank-you' note:
    • Quote
    • Report post to moderator
    html/javascript will do just fine. why do you need a 3rd party library when you can do it yourself!
     
    Author and all-around good cowpoke
    Posts: 13078
    6
    • Mark post as helpful
    • send pies
      Number of slices to send:
      Optional 'thank-you' note:
    • Quote
    • Report post to moderator
    If this was my problem I would start by making some mock-up plain HTML pages to understand the formatting required to look like what you want.

    Next I might experiment with Javascript to expose/hide the content data.

    Only after understanding the markup required would I start programming JSP.

    Bill
     
    Consider Paul's rocket mass heater.
    reply
      Bookmark Topic Watch Topic
    • New Topic