Я пытаюсь отредактировать мой fxml-файл, содержащий JFXScrollPane, но некоторые теги, такие как <topBar>
, <bottomBar>
, не распознаются Intellij Idea. Почему это так?
Код:
<?import com.jfoenix.controls.JFXScrollPane?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.layout.StackPane?>
<StackPane xmlns="http://javafx.com/javafx/11.0.1">
<children>
<JFXSCrollPane fx:id="content" maxHeight="1.8"
<topBar>
<children>
<Label text="Put text"/>
</children>
</topBar>
<JFXScrollPane>
</children>
</StackPane>