mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-02 03:07:47 +07:00
10 lines
938 B
XML
10 lines
938 B
XML
<?import javafx.scene.control.*?>
|
|
<?import javafx.scene.layout.VBox?>
|
|
<VBox xmlns:fx="http://javafx.com/fxml" fx:controller="HighlightHalfRaw">
|
|
<TableView fx:id="positive"
|
|
onSort="#sortPositive"
|
|
onScrollToColumn="#scrollPositive"/>
|
|
<TableView fx:id="negative"
|
|
onSort=<warning descr="Incompatible generic parameter of event handler argument: javafx.scene.control.SortEvent<javafx.scene.control.TableColumn> is not assignable from javafx.scene.control.SortEvent<javafx.scene.control.TableView<javafx.util.Pair>>">"#sortNegative"</warning>
|
|
onScrollToColumn=<warning descr="Incompatible generic parameter of event handler argument: javafx.scene.control.ScrollToEvent<javafx.scene.control.TableColumn<java.util.Map.Entry,?>> is not assignable from javafx.scene.control.ScrollToEvent<javafx.scene.control.TableColumn<javafx.util.Pair,?>>">"#scrollNegative"</warning>/>
|
|
</VBox> |