22 lines
810 B
XML
22 lines
810 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<?import javafx.scene.control.*?>
|
|
<?import javafx.scene.layout.*?>
|
|
|
|
<?import ru.trader.view.support.cells.OfferListCell?>
|
|
<?import javafx.geometry.Insets?>
|
|
<VBox xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1"
|
|
fx:controller="ru.trader.controllers.ItemDescController"
|
|
spacing="4" >
|
|
<fx:define><Insets fx:id="vbox_margin" left="6" top="3" bottom="3"/></fx:define>
|
|
|
|
<Label text="%itemDesc.sellers" VBox.margin="$vbox_margin"/>
|
|
<ListView fx:id="seller" maxHeight="200.0">
|
|
<cellFactory><OfferListCell/></cellFactory>
|
|
</ListView>
|
|
<Label text="%itemDesc.buyers" VBox.margin="$vbox_margin"/>
|
|
<ListView fx:id="buyer" maxHeight="200.0">
|
|
<cellFactory><OfferListCell/></cellFactory>
|
|
</ListView>
|
|
</VBox>
|