• 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

C# vs JavaFX on C#'s UserControl and flowlayoutpanel

 
Ranch Hand
Posts: 41
Netbeans IDE MySQL Database Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Everyone,

Good Day to You all.

I was a Beginner of C# Development and fond on UserControls and flowlayoutPanel where i use to display database data (Repeated data) in them instead of using TableView or ListBox which was very useful.

I am sure JavaFX should have something similar to this, but i am unable to find and don't know on what keyword to search in Google/YouTube to learn about it.

Hope Someone here in coderanch.com could help me on how to in JavaFX.

Thanks and Best Regards
 
Sheriff
Posts: 7125
184
Eclipse IDE Postgres Database VI Editor Chrome Java Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Take a look at JavaFX's FlowPane container.
 
Ifraz Imanudeen
Ranch Hand
Posts: 41
Netbeans IDE MySQL Database Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Knute Snortum wrote:Take a look at JavaFX's FlowPane container.



I search all over the Net if there is a solution where someone have used the FlowPane for Dynamic data from Database, no solution.

Can we Create a Custom Control in Scene Builder like say; which contains [ImageView]+Couple of [Labels] and that is repeated in the FlowPane of Each Record in the database.

Any Possibles .

Kindly Help
 
Knute Snortum
Sheriff
Posts: 7125
184
Eclipse IDE Postgres Database VI Editor Chrome Java Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Let's start with you explaining exactly what you want to do with this container and why things like TableView, ListView, or FlowPane aren't going to work for you.
 
Ifraz Imanudeen
Ranch Hand
Posts: 41
Netbeans IDE MySQL Database Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Knute Snortum wrote:Let's start with you explaining exactly what you want to do with this container and why things like TableView, ListView, or FlowPane aren't going to work for you.





<a href="https://ibb.co/S7RyHmf"><img src="https://i.ibb.co/fG4FZND/FlowPane.jpg" alt="FlowPane" border="0"></a>

<a href="https://ibb.co/S7RyHmf"><img src="https://i.ibb.co/S7RyHmf/FlowPane.jpg" alt="FlowPane" border="0"></a>

Sample Image

Something Similar to Sample Image.
 
Ifraz Imanudeen
Ranch Hand
Posts: 41
Netbeans IDE MySQL Database Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Ifraz Imanudeen wrote:

Knute Snortum wrote:Let's start with you explaining exactly what you want to do with this container and why things like TableView, ListView, or FlowPane aren't going to work for you.





<a href="https://ibb.co/S7RyHmf"><img src="https://i.ibb.co/fG4FZND/FlowPane.jpg" alt="FlowPane" border="0"></a>

<a href="https://ibb.co/S7RyHmf"><img src="https://i.ibb.co/S7RyHmf/FlowPane.jpg" alt="FlowPane" border="0"></a>

Sample Image

Something Similar to Sample Image.

FlowPane.jpg
[Thumbnail for FlowPane.jpg]
 
Knute Snortum
Sheriff
Posts: 7125
184
Eclipse IDE Postgres Database VI Editor Chrome Java Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You can put any Node in a Pane, as far as I know.  From your illustration, I'd try a GridPane.
 
reply
    Bookmark Topic Watch Topic
  • New Topic