Skip to content

Commit

Permalink
#15: Optimized Focus Traversal Order
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin Geisselmeier committed Feb 8, 2016
1 parent 3acab72 commit e9b3861
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/main/resources/fxml/ConfigureClusterHealthWarnings.fxml
Original file line number Diff line number Diff line change
Expand Up @@ -22,21 +22,21 @@
</rowConstraints>
<children>
<CheckBox fx:id="serverRunningCB" mnemonicParsing="false" text="%cluster-health.rule.server-running" GridPane.columnSpan="2147483647" />
<CheckBox fx:id="recentExecTimeCB" mnemonicParsing="false" text="%cluster-health.rule.recent-avg-execution-time" GridPane.rowIndex="4" />
<CheckBox fx:id="avgExecTimeCB" mnemonicParsing="false" text="%cluster-health.rule.avg-execution-time" GridPane.rowIndex="3" />
<CheckBox fx:id="recentEfficiencyCB" mnemonicParsing="false" text="%cluster-health.rule.recent-efficiency" GridPane.rowIndex="5" />
<CheckBox fx:id="totalFailureRateCB" mnemonicParsing="false" text="%cluster-health.rule.total-failure-rate" GridPane.rowIndex="1" />
<TextField fx:id="totalFailureRateValue" GridPane.columnIndex="1" GridPane.rowIndex="1" />
<CheckBox fx:id="recentFailureRateCB" mnemonicParsing="false" text="%cluster-health.rule.recent-failure-rate" GridPane.rowIndex="2" />
<TextField fx:id="recentExecTimeValue" GridPane.columnIndex="1" GridPane.rowIndex="4" />
<TextField fx:id="avgExecTimeValue" GridPane.columnIndex="1" GridPane.rowIndex="3" />
<TextField fx:id="recentEfficiencyValue" GridPane.columnIndex="1" GridPane.rowIndex="5" />
<TextField fx:id="recentFailureRateValue" GridPane.columnIndex="1" GridPane.rowIndex="2" />
<CheckBox fx:id="avgExecTimeCB" mnemonicParsing="false" text="%cluster-health.rule.avg-execution-time" GridPane.rowIndex="3" />
<TextField fx:id="avgExecTimeValue" GridPane.columnIndex="1" GridPane.rowIndex="3" />
<Label text="%cluster-health.unit.ms" GridPane.columnIndex="2" GridPane.rowIndex="3" />
<CheckBox fx:id="totalFailureRateCB" mnemonicParsing="false" text="%cluster-health.rule.total-failure-rate" GridPane.rowIndex="1" />
<TextField fx:id="totalFailureRateValue" GridPane.columnIndex="1" GridPane.rowIndex="1" />
<CheckBox fx:id="recentExecTimeCB" mnemonicParsing="false" text="%cluster-health.rule.recent-avg-execution-time" GridPane.rowIndex="4" />
<TextField fx:id="recentExecTimeValue" GridPane.columnIndex="1" GridPane.rowIndex="4" />
<Label text="%cluster-health.unit.ms" GridPane.columnIndex="2" GridPane.rowIndex="4" />
<CheckBox fx:id="recentEfficiencyCB" mnemonicParsing="false" text="%cluster-health.rule.recent-efficiency" GridPane.rowIndex="5" />
<TextField fx:id="recentEfficiencyValue" GridPane.columnIndex="1" GridPane.rowIndex="5" />
<CheckBox fx:id="autoUpdateCB" mnemonicParsing="false" text="%cluster-health.auto-update" GridPane.rowIndex="6" />
<Label text="%cluster-health.unit.min" GridPane.columnIndex="2" GridPane.rowIndex="6" />
<TextField fx:id="autoUpdateValue" GridPane.columnIndex="1" GridPane.rowIndex="6" />
<Label text="%cluster-health.unit.min" GridPane.columnIndex="2" GridPane.rowIndex="6" />
</children>
<padding>
<Insets bottom="5.0" left="5.0" right="5.0" top="5.0" />
Expand Down

0 comments on commit e9b3861

Please sign in to comment.