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
7
votes
5 answers

Java convert inputStream to URL

How can I convert an inputStream to a URL? Here is my code: InputStream song1 = this.getClass().getClassLoader().getResourceAsStream("/songs/BrokenAngel.mp3"); URL song1Url = song1.toUrl(); //<- pseudo code MediaLocator ml = new…
sanchixx
  • 275
  • 2
  • 5
  • 12
4
votes
1 answer

Java Fx arrow buttons

I am trying to arrange triangular buttons(like 3d arrow keys) around a circle. I tried to do via CSS with code below. but did not work out. It does not apply the settings to the button. I checked Jfxtras and jfoenix but could not find anything…
anupampunith
  • 147
  • 4
  • 12
2
votes
1 answer

Dependencies for jfxtras

I am planning to use jfxtras 0.7rc2 version in one of my maven build based projects. What are the dependencies I have to add for this? I am not sure if this version of jfxtras is available in maven repo's. Thanks for your help. Regards, Abi
Abhishek
  • 6,862
  • 22
  • 62
  • 79
2
votes
1 answer

JavaFX TreeTableView custom TreeCell with controls

I'm new to JavaFX 8 and tried to implement a TreeTableView with some jfxtras controls in my second and third column. Therefore I set up the cell factories of those columns with custom TreeCells e.g. like this: col3.setCellFactory(new…
clic
  • 365
  • 1
  • 13
2
votes
2 answers

Positive integers only in java.text.NumberFormat?

How would I make a java.text.NumberFormat instance that only allows positive integer numbers? Actually, it would be nice if it only allowed from 1 and on. Docs say that the formatting for postive/negative is divided by the ";" character, but…
TheStack
  • 553
  • 4
  • 12
2
votes
1 answer

How to customize Window in JFXtras Labs 8.0?

I can change icons(close,minimize) background, but i don't know how to change icon size and tittle bar size.
mindw0rk
  • 297
  • 1
  • 2
  • 10
2
votes
1 answer

Handling ENTER key pressing in JavaFX's 8 DataPicker

I'm implementing ENTER as TAB in my JavaFX application, as a requisite of users. I'm using the following code to identify all Control that exists in a Pane and add a OnKeyPressed handler: protected EventHandler processadorEnterEmCampo =…
brevleq
  • 2,081
  • 10
  • 53
  • 97
2
votes
1 answer

JFXtras and FXML interoperability

Using JavaFX2.2 along with SceneBuilder 1.0 in NetBeans to take advantage of the seamless development environment it provides. I would like to add the controls from the JFXtras lab, and as such, I'd like to find out if it's possible to integrate…
kpenrose
  • 186
  • 2
  • 14
1
vote
1 answer

JFXtras CalendarPicker MouseEvent does not behave properly

I'm using JFXtras CalendarPicker to get dates for multiple days in the calendar. My project is a JavaFX project and I'm using an FXML, in that the CalendarPicker is linked to my Controller class. In details, this is my FXML:
Thend
  • 95
  • 7
1
vote
1 answer

how to extract created appointements in IcalenderAgenda from JFXtras Api?

I recently started using JFxtras IcalenderAgenda and learning how it functions, its appointments, the events... So I created a table named planing, in the MySql database with columns like appointement_date, appointement_startTime, end_time,…
1
vote
1 answer

FXtras agenda: set allowDragging property for individual appointments instead of whole agenda

I am working with FXtras (version 8.0-r5) Agenda from http://jfxtras.org/, where I have defined two types of appointments: personal(group1) and shared(group2). Users can edit the times of their personal appointments, but not the shared appointments…
Lost
  • 13
  • 1
  • 5
1
vote
2 answers

How to change the groups of ICalendarFX

I'm using the calendar of JFXtras, by default the events have 24 groups (categories) and I want to change them. this is the default code : public final static List DEFAULT_APPOINTMENT_GROUPS = IntStream.range(0, 24) …
1
vote
0 answers

How to use jfxtra Magnifier and draw Rectangle on ImageView at the same time?

I'm trying to use the Magnifier from jfxtras-labs 2.2 to see more details on an image. At the same time, I want to draw a rectangle on top of this image. The problem is, that the Magnifier blocks all other events. Here is my sample code: package…
f0reclone
  • 41
  • 1
  • 5
1
vote
1 answer

JFXtras - save added appoitment

I working on calendar with agenda so i use JFXtras library and there examples. And i need some help. Where i can save added appointment in JFXtras? I don't know anything about MySQL, is there any other option? Is it possible to do something with txt…
MiOnIs
  • 125
  • 12
1
vote
1 answer

Adding JFXtras to my project

Today when I searching on the Internet I found the JFXtras lib which contain awesome GUI component and other stuff but when I try to use it I can't? I used other lib and add it like this way but JFXtras not! I go to web site of project…
ali shreef
  • 69
  • 10
1
2 3 4 5 6 7