summaryrefslogtreecommitdiffstats
path: root/dozentenmodul/src/main/java/org
diff options
context:
space:
mode:
authorJonathan Bauer2015-08-27 16:40:24 +0200
committerJonathan Bauer2015-08-27 16:40:24 +0200
commita00fe20862ea2ce8496ea0a95a8bb83216e87ee3 (patch)
tree2944c8c7dfda7d047e47e32bf4dde8781741babd /dozentenmodul/src/main/java/org
parent[client] fix multiple details windows opennig (diff)
downloadtutor-module-a00fe20862ea2ce8496ea0a95a8bb83216e87ee3.tar.gz
tutor-module-a00fe20862ea2ce8496ea0a95a8bb83216e87ee3.tar.xz
tutor-module-a00fe20862ea2ce8496ea0a95a8bb83216e87ee3.zip
[client] filter the table of the columns we dont wanna see when linking an existing lecture to another image
Diffstat (limited to 'dozentenmodul/src/main/java/org')
-rw-r--r--dozentenmodul/src/main/java/org/openslx/dozmod/gui/wizard/page/LectureImageListPage.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/dozentenmodul/src/main/java/org/openslx/dozmod/gui/wizard/page/LectureImageListPage.java b/dozentenmodul/src/main/java/org/openslx/dozmod/gui/wizard/page/LectureImageListPage.java
index 76a41973..512aecdc 100644
--- a/dozentenmodul/src/main/java/org/openslx/dozmod/gui/wizard/page/LectureImageListPage.java
+++ b/dozentenmodul/src/main/java/org/openslx/dozmod/gui/wizard/page/LectureImageListPage.java
@@ -6,6 +6,7 @@ import javax.swing.event.ListSelectionListener;
import org.apache.log4j.Logger;
import org.openslx.bwlp.thrift.iface.ImageSummaryRead;
import org.openslx.dozmod.gui.control.table.ImageTable;
+import org.openslx.dozmod.gui.control.table.ListTable.ListTableColumn;
import org.openslx.dozmod.gui.wizard.Wizard;
import org.openslx.dozmod.gui.wizard.layout.LectureImageListPageLayout;
import org.openslx.dozmod.state.LectureWizardState;
@@ -31,6 +32,9 @@ public class LectureImageListPage extends LectureImageListPageLayout {
super(wizard);
this.state = state;
setPageComplete(false);
+ imageTable.setColumnVisible(ImageTable.COL_OS, false);
+ imageTable.setColumnVisible(ImageTable.COL_TEMPLATE, false);
+ imageTable.setColumnVisible(ImageTable.COL_SIZE, false);
imageTable.getSelectionModel().addListSelectionListener(new ListSelectionListener() {
@Override
public void valueChanged(ListSelectionEvent e) {