sort items by date joined in tableview JavaFX -
sort items by date joined in tableview JavaFX -
i have tableview there items in date joined
, date joined
form dd nameofmonth, yyy
, how can sort items date joined
?
here part of code item class:
public static class person1 { private stringproperty firstname; private stringproperty joined; public person1(string firstname, string joined) { this.firstname = new simplestringproperty(firstname); this.joined = new simplestringproperty(joined); } public stringproperty firstnameproperty() { homecoming firstname; } public stringproperty joinedproperty(){ homecoming joined; } }
javafx tableview
Comments
Post a Comment