JFXTextField is not a valid type. Error starting JavaFX application

1

I'm using a lib in JavaFX for styling, and one of the stylings I'm using is the JFXTextField, however, while compiling the application, I run into this error:

  

JFXTextField is not a valid type

What is the solution? Thankful.

    
asked by anonymous 14.10.2017 / 00:16

1 answer

2

Apparently, you're using JFoenix .

This is a compilation error. You forgot to put this in:

import com.jfoenix.controls.JFXTextField;
    
18.11.2017 / 17:38