Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7645309
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T09:54:32+00:00 2026-05-31T09:54:32+00:00

I have JavaFX application using FXML to build its GUI. When this application is

  • 0

I have JavaFX application using FXML to build its GUI.

When this application is launched, I need to have ListView, which has some values loaded, for example, from database. So, how can I do this?

I know how to make application, which loads items to ListView after user clicks a button, or something like this (“onAction” attribute in FXML). But this does not suites me as I need items to be loaded automaticaly to the ListView.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T09:54:34+00:00Added an answer on May 31, 2026 at 9:54 am

    If you have fxml with Controller, like next:

    <AnchorPane xmlns:fx="http://javafx.com/fxml" fx:controller="test.Sample">
        <children>
            <ListView fx:id="listView"/>
        </children>
    </AnchorPane>
    

    you can just implement Initializable in your Controller:

    public class Sample implements Initializable {
        @FXML
        private ListView listView;
    
        @Override
        public void initialize(URL url, ResourceBundle rb) {
            // change next line to DB load
            List<String> values = Arrays.asList("one", "two", "three");
    
            listView.setItems(FXCollections.observableList(values));
    
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have my JavaFX 2.0 application, where i need to make some action, after
I have this easy little form in my JavaFX application. I want to use
I have a Scala application using Akka that receives REST requests, makes some operations
I have a small web application developed using Icefaces 1.8.2 and jsf 1.1 which
I have developed application in Netbeans IDE 6.9 Using javafx Script based Application. i
I have an Android application, which uses javax.crypto to encrypt some text data in
I am trying to build a Java EE application using Maven. I have the
In my application I send e-mail using mail.javax . In this case, I have
I am using netbeans for developing java dextop application,I have created a JFilechooser which
I have an application that reads data from a com port using javax.comm. The

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.