My favorites | Sign in
Project Home Downloads Wiki Issues Source
READ-ONLY: This project has been archived. For more information see this post.
Search
for
  Advanced search   Search tips   Subscriptions

Issue 165 attachment: export_component_factory.patch (885 bytes)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
### Eclipse Workspace Patch 1.0
#P jmesa-trunk
Index: src/org/jmesa/view/ExportComponentFactory.java
===================================================================
--- src/org/jmesa/view/ExportComponentFactory.java (revision 2227)
+++ src/org/jmesa/view/ExportComponentFactory.java (working copy)
@@ -16,6 +16,7 @@
package org.jmesa.view;

import org.jmesa.core.CoreContext;
+import org.jmesa.util.SupportUtils;
import org.jmesa.view.component.Column;
import org.jmesa.view.component.ColumnImpl;
import org.jmesa.view.editor.CellEditor;
@@ -45,6 +46,10 @@
exr.setCoreContext(getCoreContext());
exr.setWebContext(getWebContext());
column.setCellRenderer(exr);
+
+ SupportUtils.setCoreContext(editor, getCoreContext());
+ SupportUtils.setWebContext(editor, getWebContext());
+
return column;
}
}
Powered by Google Project Hosting