Einbindung Filter in Gerichtsverwaltung
This commit is contained in:
@@ -51,7 +51,7 @@
|
||||
<right>
|
||||
<HBox styleClass="button-untenrechts">
|
||||
<Label fx:id="status"/>
|
||||
<Button text="Speichern" onAction="#onSpeichern"/>
|
||||
<Button text="Speichern" defaultButton="true" onAction="#onSpeichern"/>
|
||||
</HBox>
|
||||
</right>
|
||||
</BorderPane>
|
||||
|
@@ -10,7 +10,7 @@
|
||||
|
||||
<BorderPane styleClass="kopfzeile">
|
||||
<left>
|
||||
<Button fx:id="zurueck" text="Zurück"/>
|
||||
<Button fx:id="zurueck" text="Zurück" onAction="#onZurueck"/>
|
||||
</left>
|
||||
<right>
|
||||
<Button fx:id="abmelden" text="Abmelden" onAction="#onAbmelden"/>
|
||||
|
@@ -58,7 +58,7 @@
|
||||
<bottom>
|
||||
<BorderPane styleClass="button-untenrechts">
|
||||
<right>
|
||||
<Button text="Bestätigen" styleClass=".button"/>
|
||||
<Button text="Bestätigen" defaultButton="true" styleClass=".button"/>
|
||||
</right>
|
||||
</BorderPane>
|
||||
</bottom>
|
||||
|
@@ -26,7 +26,7 @@
|
||||
<BorderPane>
|
||||
<right>
|
||||
<HBox styleClass="button_untenrechts">
|
||||
<Button text="Speichern"/>
|
||||
<Button text="Speichern" defaultButton="true"/>
|
||||
</HBox>
|
||||
</right>
|
||||
</BorderPane>
|
||||
|
@@ -24,7 +24,7 @@
|
||||
<left>
|
||||
<VBox styleClass="hauptmenue_buttons_links">
|
||||
<Button text="Speiseplan" onAction="#onSpeiseplanClick"/>
|
||||
<Button text="Alle Bestellungen anzeigen"/>
|
||||
<Button text="Alle Bestellungen anzeigen" onAction="#onBestellungenAnzeigen"/>
|
||||
<Button text="Rechnungen herunterladen"/>
|
||||
<Button text="Daten importieren/Exportieren"/>
|
||||
<Button text="Account anlegen" onAction="#onAccountAnlegenClick"/>
|
||||
|
@@ -13,9 +13,17 @@
|
||||
<Label text="Nach Inhaltsstoffen filtern" />
|
||||
<ListView fx:id="zutatListView" />
|
||||
|
||||
<HBox prefHeight="128.0" prefWidth="600.0" styleClass="filter_unten">
|
||||
<CheckBox fx:id="speichernCheckBox" text="Auswahl für KindA speichern " />
|
||||
<Button fx:id="abbrechenButton" cancelButton="true" text="Abbrechen" />
|
||||
<Button fx:id="fortfahrenButton" defaultButton="true" text="Fortfahren" />
|
||||
</HBox>
|
||||
<BorderPane prefHeight="128.0" prefWidth="600.0" styleClass="filter_unten">
|
||||
<left>
|
||||
<HBox>
|
||||
<CheckBox fx:id="speichernCheckBox" text="Auswahl speichern " />
|
||||
</HBox>
|
||||
</left>
|
||||
<right>
|
||||
<HBox styleClass="filter_unten">
|
||||
<Button fx:id="abbrechenButton" cancelButton="true" text="Abbrechen" />
|
||||
<Button fx:id="fortfahrenButton" defaultButton="true" text="Fortfahren" />
|
||||
</HBox>
|
||||
</right>
|
||||
</BorderPane>
|
||||
</VBox>
|
@@ -31,7 +31,7 @@
|
||||
<BorderPane>
|
||||
<right>
|
||||
<VBox styleClass="button-untenrechts">
|
||||
<Button text="Anmelden" onAction="#onAnmeldenClick"/>
|
||||
<Button text="Anmelden" defaultButton="true" onAction="#onAnmeldenClick"/>
|
||||
</VBox>
|
||||
|
||||
</right>
|
||||
|
@@ -23,8 +23,8 @@
|
||||
<RadioButton fx:id="bezahlt" text="Alle bezahlten Anzeigen" />
|
||||
|
||||
<HBox>
|
||||
<Button fx:id="abbrechenButton" text="Abbruch" />
|
||||
<Button fx:id="fortfahrenButton" text="Fortfahren" />
|
||||
<Button fx:id="abbrechenButton" cancelButton="true" text="Abbruch" />
|
||||
<Button fx:id="fortfahrenButton" defaultButton="true" text="Fortfahren" />
|
||||
</HBox>
|
||||
|
||||
</VBox>
|
||||
|
Reference in New Issue
Block a user