Change-Id: Id6160e628c4fe3c4c62ef58ccb2b7624268e64d4

Former-commit-id: 53b6ac674a3b7bbce71ce2a81b5bb3715baeaa13
This commit is contained in:
steve.naples 2014-01-30 21:03:38 +00:00
parent 709dc589ce
commit 6501c2c398

View file

@ -103,6 +103,7 @@ import com.raytheon.viz.mpe.ui.dialogs.gagetable.xml.GageTableSortType;
* ------------ ---------- ----------- --------------------------
* May 28, 2009 2476 mpduff Initial creation.
* 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>
*
@ -487,7 +488,7 @@ public class GageTableDlg extends JFrame implements IEditTimeChangedListener {
if (columnData.get(i).isDataColumn()) {
gridCombo.addItem(columnData.get(i).getName());
if (selectedGrid
.equalsIgnoreCase(columnData.get(i).getPrefix())) {
.equalsIgnoreCase(columnData.get(i).getProductDescriptor().getProductFilenamePrefix())) {
gridComboSelection = gridSelectionIndex;
}
gridSelectionIndex++;