ASM #290
Change-Id: Id6160e628c4fe3c4c62ef58ccb2b7624268e64d4 Former-commit-id: 53b6ac674a3b7bbce71ce2a81b5bb3715baeaa13
This commit is contained in:
parent
709dc589ce
commit
6501c2c398
1 changed files with 2 additions and 1 deletions
|
@ -103,6 +103,7 @@ import com.raytheon.viz.mpe.ui.dialogs.gagetable.xml.GageTableSortType;
|
||||||
* ------------ ---------- ----------- --------------------------
|
* ------------ ---------- ----------- --------------------------
|
||||||
* May 28, 2009 2476 mpduff Initial creation.
|
* May 28, 2009 2476 mpduff Initial creation.
|
||||||
* Mar 08, 2013 15725 snaples Updated to fix resort issues when editing value.
|
* Mar 08, 2013 15725 snaples Updated to fix resort issues when editing value.
|
||||||
|
* Jan 28, 2014 16994 snaples Updated populateGridCombo to get correct filename prefix for matching up selection.
|
||||||
*
|
*
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
|
@ -487,7 +488,7 @@ public class GageTableDlg extends JFrame implements IEditTimeChangedListener {
|
||||||
if (columnData.get(i).isDataColumn()) {
|
if (columnData.get(i).isDataColumn()) {
|
||||||
gridCombo.addItem(columnData.get(i).getName());
|
gridCombo.addItem(columnData.get(i).getName());
|
||||||
if (selectedGrid
|
if (selectedGrid
|
||||||
.equalsIgnoreCase(columnData.get(i).getPrefix())) {
|
.equalsIgnoreCase(columnData.get(i).getProductDescriptor().getProductFilenamePrefix())) {
|
||||||
gridComboSelection = gridSelectionIndex;
|
gridComboSelection = gridSelectionIndex;
|
||||||
}
|
}
|
||||||
gridSelectionIndex++;
|
gridSelectionIndex++;
|
||||||
|
|
Loading…
Add table
Reference in a new issue