Questions tagged [controlsfx]

ControlsFX provides additional UI controls for JavaFX to complement the core JavaFX distribution.

ControlsFX is an open source project for JavaFX that aims to provide really high quality UI controls and other tools to complement the core JavaFX distribution.

298 questions
0
votes
1 answer

Can't put a DatePicker or a Button or even an Image in SpreadsheetView cells

I was making some tests with the SpreadsheetView control from ControlsFX (v8.40.12) and i can't add any other type of object to a cell except text. Is there some problem with the code or i'm just missing something? Can someone tell me how can i do…
Pedro Figueiredo
  • 457
  • 5
  • 13
0
votes
3 answers

JavaFx CheckTreeView how to check which item is unchecked?

I am using ControlsFX for CheckTreeView. I have lots of elements in CheckTreeView and i dont want to traverse through all the elements in this tree ( because it takes lots of time due to number of elements in the tree). Is there a method like…
user8369262
0
votes
2 answers

Is there a way to change the built-in controlfx notification popup color?

[Edit] here is an exemple of use of the notification popup I'm talking about: Notifications.create().title(...).text(...).hideAfter(Duration).show(); in this case the notification popup follow the modena style (a little bit gray) if we add dark…
Moussa
  • 461
  • 4
  • 14
0
votes
1 answer

Why does these 2 components have the same behavior if i am instantiating them 2 times differently?

Here is the declaration: @FXML private CustomTextField txtFieldUsuario; @FXML private CustomPasswordField txtFieldPassword; And here is the initialization: @Override public void initialize(URL location, ResourceBundle resources) { new…
guhex
  • 3
  • 1
  • 2
0
votes
1 answer

Copying block of data in SpreadsheetView to a bigger block does not work

I am using the SpreadsheetView from ControlsFX. When I select multiple cells, copy them and paste them to a bigger block it does not work. My code: int rowCount = 5; int columnCount = 3; GridBase grid = new GridBase(rowCount,…
Hussein
  • 653
  • 3
  • 10
  • 28
0
votes
1 answer

How to change default Validator Decoration controlsfx

I use controlsfx in my project, and i tried to find proper way to change default validator decorations, so instead of graphic that it uses CSS decorator as default, but i had no access. I have no problem to make my own decorator, and decorate some…
ImRaphael
  • 204
  • 3
  • 25
0
votes
0 answers

How to add listener to cell in Gridview in javafx

there are no selectionModel in gridview in controlsFX, how can I do the same thing as selectionModel does?
Little pupil
  • 31
  • 1
  • 4
0
votes
1 answer

How to change the size of cell of Gridview in JavaFx

I start a project using gridview in controlsFx. The size of cell of gridview is so small that I want to change it. However, when I call cellProperty.setXXX() or setCellXXX(XXX means Height or Width ),the size of cell does change, when it refer to…
Little pupil
  • 31
  • 1
  • 4
0
votes
1 answer

How to resize the width of cell in GridView in ControlsFx?

I'm using GridView to construct the view in my project. I'd like to use an item with a label and a image in GridView. But the image overlapped when I add at least two pictures.I don't know why? The cell Code follows : public class AlbumCell…
Little pupil
  • 31
  • 1
  • 4
0
votes
1 answer

how to run controlsfx library demo

Hello could someone please explain to me how to run the controlsfx demo provided in their download folder. I tried to run it through java in the command line But encountered an error when trying to run the demo. This is the error. .." Error :…
0
votes
1 answer

Put image in PopOver header

How to put an image in PopOver header instead of text? PopOver popover = new PopOver(); popover.setTitle("Controls"); I want to set an image not a text.
0
votes
2 answers

ControlsFX SpreadsheetView: How to hide column?

May I ask how to hide/show a specific column in ControlsFX's SpreadsheetView. I do not want to totally remove it from Grid(GridBase). E.g. If I hide it, I can show it again without repopulating values. Something like: initial: +----+----+----+ | A …
Ezekiel Baniaga
  • 853
  • 1
  • 12
  • 26
0
votes
3 answers

Removal method works bindAutoCompletion () class TextFields library ControlsFX

I have in the text box that by choosing the combo box Binds respectively the text field with the specified data. The point is that after the first binding process, you can not remove the effect. I choose binding logins, this Binds me a text box with…
Q. One
  • 1
  • 2
0
votes
1 answer

ControlsFX Notification Graphic corrupted

I am using ControlsFX Notification to display a group of messages. Text is not perfect way for me, so I present data in TableView. import org.controlsfx.control.Notifications; ...... TableView notificationTable = new…
Shuwn Yuan Tee
  • 5,578
  • 6
  • 28
  • 42
0
votes
1 answer

JavaFX Notification with ControlsFX

I am doing Stocks market app, I need to display Order status changes to user. I came across ControlsFX Notification. From doc example, it looks like we can only specify simple text for it's content. Notifications.create() …
Shuwn Yuan Tee
  • 5,578
  • 6
  • 28
  • 42