Questions tagged [jfxtras]

JFXtras is an open source project that wants to provide to the developers additional pieces for JavaFx (layouts, utility, additional fields, ...).

JFXtras is an open source project that wants to provide to the developers additional pieces for JavaFx (layouts, utility, additional fields, ...).

JFXtras Logo

License is the New BSD License.

94 questions
1
vote
2 answers

JFXtras and Netbeans compiler issue

Would somebody be able to walk me through the proper way of adding the latest JFXtras package to a project in Netbeans? I'm not sure what I'm doing wrong... whether it be importing incorrectly, implementing incorrectly, or just simply downloading…
Greg
  • 99
  • 1
  • 3
  • 9
1
vote
1 answer

JavaFX outlook like calendar

Now I know that this question has been asked already, but the solution there didn't help me much As the title suggests, I am looking for a way to implement an Outlook like calendar into my JavaFX application. I already tried out fullcalendar, but I…
Aginu
  • 156
  • 2
  • 17
1
vote
1 answer

JFXtras add listener to dragging appointment

I cant find any information on the JFXtras JavaDoc on how to add a listener for when you click and drag an appointment. Is it possible to do this? Or anyway to disable dragging of appointments? My appointments are taken directly from a database so…
TheDream
  • 188
  • 1
  • 14
1
vote
1 answer

Generic Types incompatible with given method signature?

Given the following method: public void bindContentBidirectional(final String fieldPath, final String itemFieldPath, final Class itemFieldPathType, final ObservableList list, final Class listValueType, final…
brcolow
  • 1,042
  • 2
  • 11
  • 33
1
vote
1 answer

Working with JFXtras-Agenda, how to add it to the fxml-File

How can I add the JFXtras Agenda to my fxml-File, since I usually work with the Scenebuilder, i´m not very experienced with fxml Coding. It would be great if someone can show some of his/her Code.
user3915746
1
vote
2 answers

How to get the the number of days between two dates - `java.util.Calendar`

I'm trying to get the number of days between two dates. I'm working from Agenda, JFXtras. The start time = getStartTime() returns java.util.Calendar The end time = getEndTime() returns java.util.Calendar This is what I've got so far: void…
user3719487
  • 15
  • 1
  • 1
  • 5
1
vote
1 answer

How to get appointment details when an AppointmentPane is clicked - JFXtras

I would like to print out an appointment's summary and description when a user clicks on a particular appointment retrieved from the database. I'm trying to implement this with something like: lAgenda.selectedAppointments().addListener(new…
Program-Me-Rev
  • 6,184
  • 18
  • 58
  • 142
1
vote
1 answer

How disable handling mouse events on content area in jfxtras window?

I can drag jfxtras Window by clicking on ImageView in window area. I need to handle mouse move, swipe... events by ImageView. How disable handling mouse events on content window area? Note: You can drag window by ImageView in content area, but can't…
zella
  • 4,645
  • 6
  • 35
  • 60
1
vote
0 answers

Not able to set the height of CalendarTextField of jfxtras library

I am using CalendarTextField of jfxtras library in my project and applying css for it as well as setting prefHeight and prefWidth in fxml but the height applies only on the icon of field and the hight of field get adjust with font…
Anvay
  • 1,923
  • 2
  • 18
  • 19
1
vote
1 answer

jfxtras CalendarTextField cannot be loaded in Scene Builder

I am using Netbeans and Scenebuilder to create a JavaFX project. I realized that Scenebuilder does not have a date picker component so I downloaded the jfxtras and added the library to my classpath. I used the following code to add the…
unleashed
  • 331
  • 1
  • 5
  • 17
1
vote
0 answers

Building Jfxtras on OSX

This is driving me crazy. I am trying to build the jfxtras using the gradlew build command. and I am getting the following error Please set environment variable JAVAFX_HOME to the directory that contains /rt/lib/jfxrt.jar for JavaFX version…
Ossama
  • 2,401
  • 7
  • 46
  • 83
1
vote
0 answers

GroovyFX: using calendarTextField from jfxtras

I would like to use the calendarTextField fomr jfxtras in the same way I use textFields. I.e. I would like to be able to set row, column, columnSpan in a gridPane. I registered the calenderTextField with registerBeanFactory "calendarTextField",…
Thirdman
  • 621
  • 7
  • 13
1
vote
1 answer

How to get the selected Appointments in the Agenda components of JFXTRAS 2?

I'm having trouble on how can i get the selected appointments in the agenda component of JFXTRAS 2, any ideas on how can i get the selected appointments in the agenda component?
AsirC
  • 449
  • 1
  • 6
  • 20
1
vote
1 answer

Make JFXtras Window non moveable and resizeable

Is there a way to make a JFXtras Window (jfxtras.labs.scene.control.window.Window) non-resizable and non-movable? Thanks!
Lakatos Gyula
  • 3,949
  • 7
  • 35
  • 56
0
votes
1 answer

classNotFoundException: jfxtras.scene.control.CalendarTimeTextField

I want to use jfxtras CalendarTimeTextField in my JavaFX application. I added jfxtras-common-17-r1.jar and jfxtras-controls-17-r1.jar in classPath. I added the CalendarTimeTextField in SceneBuilder. I saved the FXML in SceneBuilder and refresh the…