I need to implement a filter in javafx tableview with huge data (around 100,000 ),
I have tried this tutorial. It works but filtering is really slow as compared to swing sorting and filtering, code.
Can anyone help me to increase speed.
What is happening right now is as I type textproperty change fire up and filterdata but it is slow, I need something which shows filter result with typing quickly as happening in swing.
thanks in advance.
p.s I have also looked at this.
I use this snippet of code for filtering but really i didn't test in huge data case
where ClassModel is your Model Class
You may use FilteredList
as fast as swing, (maybe faster then swing... ). (I tested with 100000 rows)
You can use the following code. It works fine for me..