Mercurial > dive4elements > river
changeset 1378:ebba8a8618e6
Fix flys/issue306 (CrossSections: Remove table header context menu).
flys-client/trunk@3127 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Felix Wolfsteller <felix.wolfsteller@intevation.de> |
---|---|
date | Tue, 01 Nov 2011 12:08:09 +0000 |
parents | b0fe35d4ce6b |
children | 546f7f890ffa |
files | flys-client/ChangeLog flys-client/src/main/java/de/intevation/flys/client/client/ui/chart/CrossSectionChartThemePanel.java |
diffstat | 2 files changed, 9 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/flys-client/ChangeLog Mon Oct 31 11:52:42 2011 +0000 +++ b/flys-client/ChangeLog Tue Nov 01 12:08:09 2011 +0000 @@ -1,3 +1,11 @@ +2011-11-01 Felix Wolfsteller <felix.wolfsteller@intevation.de> + + Fix flys/issue306 (CrossSections: Remove functionality from table + header). + + * src/main/java/de/intevation/flys/client/client/ui/chart/CrossSectionChartThemePanel.java: + Disable context menu on listgrid header. + 2011-10-31 Ingo Weinzierl <ingo@intevation.de> * src/main/java/de/intevation/flys/client/client/ui/map/MapThemePanel.java:
--- a/flys-client/src/main/java/de/intevation/flys/client/client/ui/chart/CrossSectionChartThemePanel.java Mon Oct 31 11:52:42 2011 +0000 +++ b/flys-client/src/main/java/de/intevation/flys/client/client/ui/chart/CrossSectionChartThemePanel.java Tue Nov 01 12:08:09 2011 +0000 @@ -132,6 +132,7 @@ list.setShowRecordComponents(true); list.setShowRecordComponentsByCell(true); list.setShowAllRecords(true); + list.setShowHeaderContextMenu(false); return list; }