File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
java/com/esri/samples/featurelayers/statistical_query_group_and_sort Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ private void initializeStatisticDefinitionsTableView() {
120120
121121 /**
122122 * Initializes the Order By table view. Configures the table columns to show the correct field values and allow the
123- * sort direction of each field to be changed with a ComboBox.
123+ * sort order of each field to be changed with a ComboBox.
124124 */
125125 private void initializeOrderByTableView () {
126126 // make the table columns stretch to fill the width of the table
@@ -138,7 +138,7 @@ private void initializeOrderByTableView() {
138138 return ct ;
139139 });
140140
141- // switch to edit mode when the user selects the Sort Direction column
141+ // switch to edit mode when the user selects the Sort Order column
142142 orderByTableView .getSelectionModel ().selectedItemProperty ().addListener (e -> {
143143 List <TablePosition > tablePositions = orderByTableView .getSelectionModel ().getSelectedCells ();
144144 if (!tablePositions .isEmpty ()) {
Original file line number Diff line number Diff line change 8181 <TableView fx : id =" orderByTableView" editable =" true" >
8282 <columns >
8383 <TableColumn fx : id =" orderByFieldNameTableColumn" text =" Field" />
84- <TableColumn fx : id =" orderBySortOrderTableColumn" text =" Sort Direction " />
84+ <TableColumn fx : id =" orderBySortOrderTableColumn" text =" Sort Order " />
8585 </columns >
8686 </TableView >
8787 </VBox >
You can’t perform that action at this time.
0 commit comments