我将 GWT 2.0、GWT-Ext 1.5 和 Java 1.6 与 Mozilla 3.6.x 一起使用。
我正在尝试在 HTMLEditor 中显示图像。但我无法做到这一点。这是我的代码:
public void onModuleLoad() {
FormPanel mainpanel = new FormPanel();
mainpanel.setTitle("Main Panel");
mainpanel.setLayout(new VerticalLayout(5));
mainpanel.setSize(700,550);
mainpanel.setBorder(true);
mainpanel.setAutoScroll(true);
HtmlEditor htmlEditor = new HtmlEditor();
htmlEditor.setWidth("600px");
mainpanel.add(htmlEditor);
RootPanel.get("panels").add(mainpanel);
}
显示编辑器后,我在“源编辑模式”中编写以下行:
<img src = "(path of a jpg file)"></img>
但无法在标准模式下看到上传的图像。我错过了什么吗?
提前致谢。