Reputation: 1
I want to add a calender
or organizer to my JPanel
. Such that I can add tasks to a date. Is there some Jar file that you peform? I know JCalender
but it's without a taskadd
.
Does someone have a experience with chronology? Download link
Upvotes: 0
Views: 358
Reputation: 606
You can use JXDatePicker from swingx library(Or a JSpinner) and a TextArea/TextBox and a Submit JButton to add your tasks on Click of a Submit button in a database table or a file.
On selection of a date you can load the task from the database table in the TextArea/JTextField.
Upvotes: 1