Compare commits
No commits in common. "521b1cb2f72f3d3d074ff7b1e8a85a63f1f64f61" and "051000169ef64d9dd3830954fe7cfef5a4dfa1d1" have entirely different histories.
521b1cb2f7
...
051000169e
@ -27,9 +27,9 @@ public class CreateEventController {
|
|||||||
@FXML
|
@FXML
|
||||||
public JFXComboBox<String> ComboBoxPriotity;
|
public JFXComboBox<String> ComboBoxPriotity;
|
||||||
@FXML
|
@FXML
|
||||||
public JFXToggleButton toggleBtnIsFullDay;
|
public JFXCheckBox checkBoxIsFullDay;
|
||||||
@FXML
|
@FXML
|
||||||
public JFXToggleButton toggleBtnIsPrivate;
|
public JFXCheckBox checkBoxIsPrivate;
|
||||||
@FXML
|
@FXML
|
||||||
public Label labelError;
|
public Label labelError;
|
||||||
@FXML
|
@FXML
|
||||||
@ -45,11 +45,20 @@ public class CreateEventController {
|
|||||||
public void initialize() {
|
public void initialize() {
|
||||||
|
|
||||||
StringConverter<LocalTime> defaultConverter = new LocalTimeStringConverter(FormatStyle.SHORT, Locale.GERMANY);
|
StringConverter<LocalTime> defaultConverter = new LocalTimeStringConverter(FormatStyle.SHORT, Locale.GERMANY);
|
||||||
timeStart.set24HourView(true);
|
|
||||||
timeStart.setConverter(defaultConverter);
|
|
||||||
|
|
||||||
timeEnd.set24HourView(true);
|
JFXTimePicker timePickerStart = new JFXTimePicker();
|
||||||
timeEnd.setConverter(defaultConverter);
|
timeStart = timePickerStart;
|
||||||
|
timePickerStart.set24HourView(true);
|
||||||
|
timePickerStart.setConverter(defaultConverter);
|
||||||
|
timePickerStart.getStyleClass().add("timePicker");
|
||||||
|
mainGrid.add(timePickerStart, 1 , 3);
|
||||||
|
|
||||||
|
JFXTimePicker timePickerEnd = new JFXTimePicker();
|
||||||
|
timeEnd = timePickerEnd;
|
||||||
|
timePickerEnd.set24HourView(true);
|
||||||
|
timePickerEnd.setConverter(defaultConverter);
|
||||||
|
timePickerEnd.getStyleClass().add("timePicker");
|
||||||
|
mainGrid.add(timePickerEnd, 1 , 4);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -63,8 +72,8 @@ public class CreateEventController {
|
|||||||
Event event = new Event(
|
Event event = new Event(
|
||||||
textName.getText(),
|
textName.getText(),
|
||||||
ComboBoxPriotity.getSelectionModel().getSelectedIndex(),
|
ComboBoxPriotity.getSelectionModel().getSelectedIndex(),
|
||||||
toggleBtnIsFullDay.isSelected(),
|
checkBoxIsFullDay.isSelected(),
|
||||||
toggleBtnIsPrivate.isSelected(),
|
checkBoxIsPrivate.isSelected(),
|
||||||
timeStart.getValue().toString(),
|
timeStart.getValue().toString(),
|
||||||
timeEnd.getValue().toString(),
|
timeEnd.getValue().toString(),
|
||||||
datePickerDate.getValue().atStartOfDay(),
|
datePickerDate.getValue().atStartOfDay(),
|
||||||
|
@ -61,4 +61,5 @@ JFXButton{
|
|||||||
|
|
||||||
.timePicker{
|
.timePicker{
|
||||||
-fx-background-color: white;
|
-fx-background-color: white;
|
||||||
|
-fx-max-width: 200px;
|
||||||
}
|
}
|
@ -40,8 +40,6 @@
|
|||||||
|
|
||||||
<JFXTextField styleClass="inputField" fx:id="textName" GridPane.columnIndex="1" GridPane.rowIndex="1" maxWidth="400" minWidth="400"/>
|
<JFXTextField styleClass="inputField" fx:id="textName" GridPane.columnIndex="1" GridPane.rowIndex="1" maxWidth="400" minWidth="400"/>
|
||||||
<JFXDatePicker styleClass="inputDate" fx:id="datePickerDate" GridPane.columnIndex="1" GridPane.rowIndex="2" maxWidth="200" minWidth="200"/>
|
<JFXDatePicker styleClass="inputDate" fx:id="datePickerDate" GridPane.columnIndex="1" GridPane.rowIndex="2" maxWidth="200" minWidth="200"/>
|
||||||
<JFXTimePicker styleClass="timePicker" fx:id="timeStart" GridPane.columnIndex="1" GridPane.rowIndex="3" maxWidth="200" minWidth="200"/>
|
|
||||||
<JFXTimePicker styleClass="timePicker" fx:id="timeEnd" GridPane.columnIndex="1" GridPane.rowIndex="4" maxWidth="200" minWidth="200"/>
|
|
||||||
|
|
||||||
<JFXComboBox fx:id="ComboBoxPriotity" styleClass="comboBox" GridPane.columnIndex="1" GridPane.rowIndex="5" maxWidth="200" minWidth="200">
|
<JFXComboBox fx:id="ComboBoxPriotity" styleClass="comboBox" GridPane.columnIndex="1" GridPane.rowIndex="5" maxWidth="200" minWidth="200">
|
||||||
<items>
|
<items>
|
||||||
@ -52,8 +50,8 @@
|
|||||||
</FXCollections>
|
</FXCollections>
|
||||||
</items>
|
</items>
|
||||||
</JFXComboBox>
|
</JFXComboBox>
|
||||||
<JFXToggleButton styleClass="checkbox" fx:id="toggleBtnIsFullDay" GridPane.columnIndex="1" GridPane.rowIndex="6"/>
|
<JFXCheckBox styleClass="checkbox" fx:id="checkBoxIsFullDay" GridPane.columnIndex="1" GridPane.rowIndex="6"/>
|
||||||
<JFXToggleButton styleClass="checkbox" fx:id="toggleBtnIsPrivate" GridPane.columnIndex="1" GridPane.rowIndex="7"/>
|
<JFXCheckBox styleClass="checkbox" fx:id="checkBoxIsPrivate" GridPane.columnIndex="1" GridPane.rowIndex="7"/>
|
||||||
<Label fx:id="labelError" GridPane.columnIndex="1" GridPane.rowIndex="8"/>
|
<Label fx:id="labelError" GridPane.columnIndex="1" GridPane.rowIndex="8"/>
|
||||||
|
|
||||||
<HBox GridPane.columnIndex="1" GridPane.rowIndex="9" GridPane.columnSpan="2" alignment="CENTER_RIGHT">
|
<HBox GridPane.columnIndex="1" GridPane.rowIndex="9" GridPane.columnSpan="2" alignment="CENTER_RIGHT">
|
||||||
|
@ -40,8 +40,6 @@
|
|||||||
|
|
||||||
<JFXTextField styleClass="inputField" fx:id="textName" GridPane.columnIndex="1" GridPane.rowIndex="1" maxWidth="400" minWidth="400"/>
|
<JFXTextField styleClass="inputField" fx:id="textName" GridPane.columnIndex="1" GridPane.rowIndex="1" maxWidth="400" minWidth="400"/>
|
||||||
<JFXDatePicker styleClass="inputDate" fx:id="datePickerDate" GridPane.columnIndex="1" GridPane.rowIndex="2" maxWidth="200" minWidth="200"/>
|
<JFXDatePicker styleClass="inputDate" fx:id="datePickerDate" GridPane.columnIndex="1" GridPane.rowIndex="2" maxWidth="200" minWidth="200"/>
|
||||||
<JFXTimePicker styleClass="timePicker" fx:id="timeStart" GridPane.columnIndex="1" GridPane.rowIndex="3" maxWidth="200" minWidth="200"/>
|
|
||||||
<JFXTimePicker styleClass="timePicker" fx:id="timeEnd" GridPane.columnIndex="1" GridPane.rowIndex="4" maxWidth="200" minWidth="200"/>
|
|
||||||
|
|
||||||
<JFXComboBox fx:id="ComboBoxPriotity" styleClass="comboBox" GridPane.columnIndex="1" GridPane.rowIndex="5" maxWidth="200" minWidth="200">
|
<JFXComboBox fx:id="ComboBoxPriotity" styleClass="comboBox" GridPane.columnIndex="1" GridPane.rowIndex="5" maxWidth="200" minWidth="200">
|
||||||
<items>
|
<items>
|
||||||
@ -52,8 +50,8 @@
|
|||||||
</FXCollections>
|
</FXCollections>
|
||||||
</items>
|
</items>
|
||||||
</JFXComboBox>
|
</JFXComboBox>
|
||||||
<JFXToggleButton styleClass="checkbox" fx:id="toggleBtnIsFullDay" GridPane.columnIndex="1" GridPane.rowIndex="6"/>
|
<JFXCheckBox styleClass="checkbox" fx:id="checkBoxIsFullDay" GridPane.columnIndex="1" GridPane.rowIndex="6"/>
|
||||||
<JFXToggleButton styleClass="checkbox" fx:id="toggleBtnIsPrivate" GridPane.columnIndex="1" GridPane.rowIndex="7"/>
|
<JFXCheckBox styleClass="checkbox" fx:id="checkBoxIsPrivate" GridPane.columnIndex="1" GridPane.rowIndex="7"/>
|
||||||
<Label fx:id="labelError" GridPane.columnIndex="1" GridPane.rowIndex="8"/>
|
<Label fx:id="labelError" GridPane.columnIndex="1" GridPane.rowIndex="8"/>
|
||||||
|
|
||||||
<HBox GridPane.columnIndex="1" GridPane.rowIndex="9" GridPane.columnSpan="2" alignment="CENTER_RIGHT">
|
<HBox GridPane.columnIndex="1" GridPane.rowIndex="9" GridPane.columnSpan="2" alignment="CENTER_RIGHT">
|
||||||
|
Loading…
x
Reference in New Issue
Block a user