问题标签 [gwt2]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
eclipse - GPE for Eclipse Indigo 安装错误
我正在尝试将 Eclipse Indigo与 Google Plugin for Eclipse (GPE) 一起使用,但找不到 GPE 3.7。我的意思是,我会对 GPE 3.6 感到满意。
现在我在安装 GPE3.6 时遇到此错误:
无法完成安装,因为找不到一项或多项所需项目。正在安装的软件:Google Plugin for Eclipse 3.6 2.2.0.v201102111811 (com.google.gdt.eclipse.suite.e36.feature.feature.group 2.2.0.v201102111811) 缺少要求:Google Plugin for Eclipse 3.6 2.2.0。 v201102111811 (com.google.gdt.eclipse.suite.e36.feature.feature.group 2.2.0.v201102111811) 需要 ' org.eclipse.platform.feature.group [3.6.0,3.7.0) ' 但它不能被发现
什么是 org.eclipse.platform.feature.group?我必须安装什么样的软件包?
gwt - GWT - 为登录目的实现对话框
出于测试目的,我想使用 DialogBox 登录我的应用程序。
这是 uibinder 文件:
这是我的实现:
现在我的问题是:这是正确的方法吗?该文档似乎没有说明如何做这种事情......
gwt - GWT (event.getCharCode) 在 IE 和 Firefox 中的行为不同
我正在阅读GWT 网站上提供的 StockWatcher 应用程序教程,并按照步骤 4:管理客户端上的事件中所述测试应用程序。
下面的代码在 Firefox 和 IE7 中的行为不同。在 IE7 中这很好用,即如果我在 Text 字段中输入一些垃圾字符并按 Enter " event.getCharCode() == KeyCodes.KEY_ENTER
" 行会成功执行,我会看到一条警告消息。但是,如果我使用 Firefox,则同一行不起作用。
当我使用 Firefox 并按 Enter 时,event.getCharCode 返回一些垃圾字符。我在这里做错了什么?还是这是预期的行为?
gwt - 从嵌入式 GWT 应用程序更新父 URL?
我们正在 GWT 中构建一个新的应用程序。此应用程序需要合并到现有应用程序中。托管 GWT 应用程序的服务器将不同于托管现有应用程序的服务器。为了解决 SOP 问题,我们计划将 GWT 应用程序嵌入到现有应用程序的 iframe 中。我们想使用历史令牌来记录 GWT 应用程序中的页面更改。这工作正常,即浏览器中的后退和前进按钮按预期工作,除了嵌入 GWT 应用程序的父页面的 URL 不会更改以反映历史令牌更改。有没有办法从嵌入在 iframe 中的 GWT 应用程序修改父页面 URL?任何帮助将不胜感激!谢谢!
java - GWT - 您是否忘记继承所需的模块?
在我的GWT 应用程序中,在客户端 Java 文件中,我写了一行来打印语言环境:
这里的 Locale 是 java.util.Locale 的一个实例。
我遇到了一个例外: 09:31:53.656 [ERROR] [stockwatcher] Line 167 No source code is available for type java.util.Locale; did you forget to inherit a required module?
令人惊讶的是,在这个课程中我也使用过java.util.ArrayList
,java.util.Date
但我没有得到这些课程的任何例外。
我在这里做错了什么?
java - 如何使用 com.google.gwt.user.datepicker.client.DateBox 限制可用的日期范围
我需要限制Dates
用户可以从com.google.gwt.user.datepicker.client.DateBox
.
我似乎无法弄清楚如何限制最小值Date
,因此他们无法选择过去的日期。
如果我不能这样做,com.google.gwt.user.datepicker.client.DateBox
是否有其他DateBox
小部件可以让我有这种灵活性?
java - 禁用 com.google.gwt.user.datepicker.client.DatePicker 上的上个月和下个月按钮?
我有一个com.google.gwt.user.datepicker.client.DatePicker
并且我不希望用户在某些情况下能够选择上个月或下个月。
例如,我不希望用户能够选择今天之前的一天。
我想出了如何禁用日历中的实际天数,但用户仍然可以单击<<
并返回一个月,所有天数都被禁用。
我找不到任何方法来获取对<<
和>>
按钮/链接的引用以最好隐藏它们或禁用它们。
我正在使用 GWT 2.1.1,如果这很重要,可以转到 GWT 2.2.0。
有谁知道如何获得对这些小部件的引用?
gwt - GWT 仍然是大型业务应用程序的选择吗
我的公司正计划开发一个全新的 Web 前端应用程序。
一些背景:
- 它必须“咝咝作响”,即良好的适销对路的外观和感觉。
- 我们的开发团队没有 Java 经验,在 Silverlight、Javascript、JQuery 或 CSS 方面的经验有限。
- 上市时间是一个因素。
- 我们需要从 Oracle 数据库流式传输大量数据。
- 它必须支持 500 - 1000 个并发用户
- 它将在防火墙后内部托管。
- 我们需要地图(地理空间)能力。
有人建议使用 GWT 而不是 Silverlight 或传统技术(Javascript、jquery、CSS 等)。
我不确定这是否是正确的方法?很多 GWT 新闻来自 2007/2008 年。这让我觉得这项技术已经过时并且可能正在消亡。
如果让你选择,你会选择 GWT 吗?
gwt - 简单的 GWT 编辑器示例
除了复制和粘贴现有的 GWT 编辑器示例之外,我发现其他任何事情都令人沮丧。这是创建最小编辑器的尝试,但没有成功。
当它被实例化时
我得到一个UmbrellaException
包含
这是怎么回事---子编辑器?失败似乎在生成的代码中,我很难调试。
非常感谢。
java - Big list of events in GWT EventBus
In the examples provided by Google Web toolkit that they are adding the event handlers in one class only for the whole application.
As in - for Module1, 2 and 3 all events are registered in the main AppController class. I find this a bit monolithic and would not it better when we are using the MVP pattern that we declare a method called bind() in each of the Presenters that is as follows:
Query is:
If our application is huge - we would be using one eventbus to populate more than a thousand events in it - or would we design in such a way that we have separate instances of event bus for each module?.
Any cost of keeping the static event bus field. Any better design to give it's instance to all classes - passing it around to all classes through a constructor with each presenter class having it's reference seems a bit of clutter ...
What are activity and places in GWT when it comes to event handling? - Can someone give a pointer to how to understand the concept of activity/place in general?