bugfix in case of body (string) not editable
git-svn-id: http://svn.research-infrastructures.eu/public/d4science/gcube/trunk/portlets/user/reports@84145 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
20a50be5e9
commit
27ae3399f1
|
@ -29,10 +29,10 @@ public class ToolboxPanel extends SimplePanel {
|
|||
|
||||
public ToolboxPanel(AppControllerExplorer appController) {
|
||||
this.appController = appController;
|
||||
AsyncTreePanel tp = appController.getTree(TOOLBOX_WIDTH, TOOLBOX_HEIGHT);
|
||||
this.tp = tp;
|
||||
add(tp);
|
||||
this.appController.hideSharingFacilities(); //sharing disabled we have problems from Reports
|
||||
// AsyncTreePanel tp = appController.getTree(TOOLBOX_WIDTH, TOOLBOX_HEIGHT);
|
||||
// this.tp = tp;
|
||||
// add(tp);
|
||||
// this.appController.hideSharingFacilities(); //sharing disabled we have problems from Reports
|
||||
}
|
||||
|
||||
public void showExportedVersion(String id, String fileName) {
|
||||
|
|
|
@ -196,7 +196,7 @@ public class TemplateComponent {
|
|||
if (sc.isLocked()) {
|
||||
HTML area = new HTML();
|
||||
area.setStyleName("report-ui-component");
|
||||
area.addStyleName(getStyle(sc.getType()));
|
||||
//area.addStyleName(getStyle(sc.getType()));
|
||||
area.getElement().getStyle().setMarginTop(5, Unit.PX);
|
||||
area.setPixelSize(width, 18);
|
||||
area.setText((String) sc.getPossibleContent());
|
||||
|
|
Reference in New Issue