JavaFX Tutorial #3 - A Basic TableView

preview_player
Показать описание
JavaFX Tutorial #3 - A Basic TableView

In this video I show you how to use the JavaFX TableView.

If you have any questions, feel free to write a comment ;).

Subscribe now!

Рекомендации по теме
Комментарии
Автор

Danke für die grossartige Tutorial. Besser als alle Tutorials in Internet.

Lamyarus
Автор

perfect tutorial for me who is a newbee lol...
i like the way you explain what is happening. i have been looking for a way on how to extract data for when a row is clicked and now i found it and to make it even better now i understand it too.

PERFECT TUTORIAL

tuworlds
Автор

I appreciate the tutorial. But the Font size is so so tiny. I hope the font is huge in future tutorials.

xioncruzoe
Автор

Awesome.. Thanks a lot!! (but please consider to low your monitor resolution when recording)

mathc
Автор

wow this is awesome, I think its a little advanced for me though. Do you contain videos teaching about the details of for example ArrayList<TableColumn<Person, ?>> columns = new ArrayList<TableColumn<Person, ?>>(); ? stuff like that

robnagy
Автор

Dennis, the tutorial is awesome. However, it will help if you have slightly bigger font. It makes it very difficult to read the code.

naahsi
Автор

There is one typo, lastename --> lastname, thanks for sharing!

zuckberg
Автор

how drag and drop a TableRow from TableView to out TableView (to ImageView for example)

excelavanzadoYA
Автор

How would I load a csv file into the tableview?

stanmoonie
Автор

do you know how I can have comboBox for a column in the table view?

jyrikgauldurson
Автор

Hi! I have one more question. Is it possible to create pdf document from such table? Thank you in advance.

nikoism
Автор

TableViews are messy in JavaFX. I always have to relearn it after some time...

true_podejrzany
Автор

how to populate a table view datas from mysql database? plz help me

bonnysebastian
Автор

Good tutorial on how to use a table with JavaFX, but I completely disagree with the implementation of that static method inside your Person class.

Isn't a class supposed be encapsulate everything it should know about itself and the things it can do (i.e. Properties/Methods). Why should a Person object need to know how many other Person objects there are out there? It shouldn't. Just as you should not know how many other people are out there besides you. You can perform the same task by creating a list outside of the Person class, and do the same thing outside the Person class.

But all in all, this is just opinion. If it works then I guess it's fine, it's just fundamentally bad OOP (which java happens to be an OOP language.)

Valkyrie
Автор

Hi! Great tutorial, thank you! I'm following this tutorial and im getting this error - cannot find symbol class ObservableArrayList

import
import

    public static ObservableList<Person> getPerson(){
        
       (error)ObservableList<Person> data = new
        data.add(new Person("Nikolajus", "Karpovas", new Date()));
        data.add(new Person("Nikolaj", "Karpov", new Date()));
        data.add(new Person("John", "Doe", new Date()));
        
        return data;
        
    }

Could you help me with this one? Thanx in advance.

nikoism