我仍然是SmartGWT的新手,目前遇到一个奇怪的问题。
我正在使用Windows XP和SmartGWT 3.0版,
GWT SDK 2.4.0(使用Eclipse IDE)。
所以我的问题是,我从SmartGWT展示柜中复制了一些示例:Styled ComboBox
DynamicForm df = new DynamicForm();
ComboBoxItem cb = new ComboBoxItem();
cb.setValueMap("cat", "dog", "bird");
cb.setTitle("Select:");
df.setItems(cb);
...
layout.addMember(df);
当我将其作为Web应用程序运行时,不会显示valuemap。
我的意思是,[v]按钮在那里,但是当我单击它时什么也没有发生。
很抱歉出现菜鸟问题,感谢您的帮助! :D
更新-2012年5月3日
这是我的浏览器上显示的内容:
屏幕截图已删除
这是完整的独立代码:
HelloWorld.java
package com.example.helloworld.client;
import com.google.gwt.core.client.EntryPoint;
import com.smartgwt.client.widgets.layout.VLayout;
import com.smartgwt.client.widgets.form.DynamicForm;
import com.smartgwt.client.widgets.form.fields.ComboBoxItem;
public class HelloWorld implements EntryPoint {
public void onModuleLoad() {
VLayout layout = new VLayout();
layout.setWidth100();
layout.setHeight100();
DynamicForm df = new DynamicForm();
ComboBoxItem cb = new ComboBoxItem();
cb.setTitle("Select :");
cb.setValueMap("Cat", "Dog", "Bird");
df.setItems(cb);
layout.addMember(df);
layout.draw();
}
}
HelloWorld.gwt.xml
<?xml version="1.0" encoding="UTF-8"?>
<module rename-to='helloworld'>
<!-- Inherit the core Web Toolkit stuff. -->
<inherits name='com.google.gwt.user.User'/>
<!-- Inherit the default GWT style sheet. You can change -->
<!-- the theme of your GWT application by uncommenting -->
<!-- any one of the following lines. -->
<!-- <inherits name='com.google.gwt.user.theme.standard.Standard'/> -->
<!-- <inherits name='com.google.gwt.user.theme.chrome.Chrome'/> -->
<!-- <inherits name='com.google.gwt.user.theme.dark.Dark'/> -->
<!-- Other module inherits -->
<inherits name="com.smartgwt.SmartGwt" />
<!-- Specify the app entry point class. -->
<entry-point class='com.example.helloworld.client.HelloWorld'/>
<!-- Specify the paths for translatable code -->
<source path='client'/>
<source path='shared'/>
</module>
在Eclipse的“开发模式”标签上(向您显示要在浏览器上运行的链接),
我收到此消息:
[INFO] [helloworld]-您的* .gwt.xml模块配置禁止
当前文档渲染模式的使用(document.compatMode ='
CSS1Compat')。修改应用程序的宿主HTML页面doctype,或
更新您的自定义'document.compatMode'配置属性
设置。
还有一个警告:
以下类路径条目'C:\ some-path \ smartgwt-3.0 \ smartgwt.jar'
在服务器的类路径上将不可用。
更新2-HTML和CSS文件
HTML:
<!doctype html>
<!-- The DOCTYPE declaration above will set the -->
<!-- browser's rendering engine into -->
<!-- "Standards Mode". Replacing this declaration -->
<!-- with a "Quirks Mode" doctype is not supported. -->
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<!-- -->
<!-- Consider inlining CSS to reduce the number of requested files -->
<!-- -->
<link type="text/css" rel="stylesheet" href="HelloWorld.css">
<!-- -->
<!-- Any title is fine -->
<!-- -->
<title>Web Application Starter Project</title>
<!-- -->
<!-- This script loads your compiled module. -->
<!-- If you add any GWT meta tags, they must -->
<!-- be added before this line. -->
<!-- -->
<script type="text/javascript" language="javascript" src="helloworld/helloworld.nocache.js"></script>
</head>
<!-- -->
<!-- The body can have arbitrary html, or -->
<!-- you can leave the body empty if you want -->
<!-- to create a completely dynamic UI. -->
<!-- -->
<body>
<!-- OPTIONAL: include this if you want history support -->
<iframe src="javascript:''" id="__gwt_historyFrame" tabIndex='-1' style="position:absolute;width:0;height:0;border:0"></iframe>
<!-- RECOMMENDED if your web app will not function without JavaScript enabled -->
<noscript>
<div style="width: 22em; position: absolute; left: 50%; margin-left: -11em; color: red; background-color: white; border: 1px solid red; padding: 4px; font-family: sans-serif">
Your web browser must have JavaScript enabled
in order for this application to display correctly.
</div>
</noscript>
</body>
</html>
和CSS文件:
/** Add css rules here for your application. */
/** Example rules used by the template application (remove for your app) */
h1 {
font-size: 2em;
font-weight: bold;
color: #777777;
margin: 40px 0px 70px;
text-align: center;
}
.sendButton {
display: block;
font-size: 16pt;
}
/** Most GWT widgets already have a style name defined */
.gwt-DialogBox {
width: 400px;
}
.dialogVPanel {
margin: 5px;
}
.serverResponseLabelError {
color: red;
}
/** Set ids using widget.getElement().setId("idOfElement") */
#closeButton {
margin: 15px 6px 6px;
}
重要更新
我忘了通知您,我目前正在使用Google Chrome(18.0.1025.168)进行调试/测试。当我在Firefox上运行它时,它运行正常!
我注意到这个thread有点晚了。所以这是目前已知的错误。
结论:请勿将Google chrome用于GWT / smartGWT开发模式(目前)。
谢谢您的帮助! :D
最佳答案
我忘了通知您,我目前正在使用Google Chrome(18.0.1025.168)进行调试/测试。当我在Firefox上运行它时,它运行正常!
我注意到这个thread (smartclient forum)有点晚了。所以这是目前已知的错误。
结论:请勿将Google chrome用于GWT / smartGWT开发模式(目前)。
谢谢您的帮助! :D
关于java - SmartGWT:ComboBox-ValueMap不出现,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10396992/