• 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
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

How to create draggable components like textfield,static text in java

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

I am creating web application.I need to create two containers in my web-page. In one container text-field,static text,combo-box etc components have to display.In second container user can drag n drop the components from the first container and align according to their requirement.Once they can drag and click on that particular component in second container that corresponding component properties have to be displayed in the first container.All this process has to be done dynamically.Can anybody suggest me how to create components in a container.Any great help appreciate.
Thanku
 
Rancher
Posts: 5008
38
  • Likes 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

how to create components in a container


how to create components  -> use a new statement: ...  = new SomeComponent()
in a container -> use the container's add method:  container.add(someComponent)
 
Marshal
Posts: 28177
95
Eclipse IDE Firefox Browser MySQL Database
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Buela, welcome to the Ranch!

buela blessy wrote:I am creating web application.I need to create two containers in my web-page...



In your web-page? Then you're asking about HTML and JavaScript and so on. I will move this thread to that forum.
reply
    Bookmark Topic Watch Topic
  • New Topic