gwt-ext

Difference between gwt-ext and ext-gwt

末鹿安然 提交于 2019-12-03 12:26:24
Am I taking crazy pills, or are these two things pretty much identical? Having spent significant time with both frameworks at this point I would say that they are not "pretty much identical". While they may both use the same graphical assets, the way that they go about getting there is very different and depending on your needs/development style you may find one preferable to the other. GWT-EXT encapsulates Ext-JS by wrapping the Ext-JS framework which can lead to frustration when attempting to extend functionality because you don't have access to the implementation at a low enough level.

Session management in the gwt

微笑、不失礼 提交于 2019-12-02 19:37:47
问题 I am working on an GWT-ext application. In this application I managed client side session. For this I write below code: To manage the session: import com.google.gwt.user.client.Timer; public class ClientTimers { private static final Timer SESSION_MAY_HAVE_EXPIRED_TIMER = new Timer() { @Override public void run() { // Warn the user, that the session may have expired. // You could then show a login dialog, etc... } }; public static void renewSessionTimer() { // First cancel the previous timer

How to display java applet inside GWT page?

≯℡__Kan透↙ 提交于 2019-11-30 22:49:00
I'm probably missing something simple here, but I can't find the answer elsewhere. I just want to display an applet in my GWT code. OS: Windows XP Java: JDK 1.6.0_10 Other: GWT, GWT-Ext 2.0.5 Here is the applet (obviously simplified for testing): package foo.applet; import javax.swing.JApplet; import java.awt.Graphics; public class HelloApplet extends JApplet { public void paint(Graphics g) { g.drawRect(0, 0, getSize().width - 1, getSize().height - 1); g.drawString("Hello world!", 5, 15); } } Here is the code calling it: package foo.applet; import com.google.gwt.user.client.ui.HTML; import com

How to display java applet inside GWT page?

淺唱寂寞╮ 提交于 2019-11-30 17:23:41
问题 I'm probably missing something simple here, but I can't find the answer elsewhere. I just want to display an applet in my GWT code. OS: Windows XP Java: JDK 1.6.0_10 Other: GWT, GWT-Ext 2.0.5 Here is the applet (obviously simplified for testing): package foo.applet; import javax.swing.JApplet; import java.awt.Graphics; public class HelloApplet extends JApplet { public void paint(Graphics g) { g.drawRect(0, 0, getSize().width - 1, getSize().height - 1); g.drawString("Hello world!", 5, 15); } }

ExtJs Vs Ext GWT Vs SmartGWT

删除回忆录丶 提交于 2019-11-30 08:43:04
问题 I am going to start a new application which mainly consist NavigationPane, Grid, Toolbar. Layout should look like this demo page http://www.gwt-ext.com/demo/ I am quite confused which one to use in terms of writing less code, more performant, etc.. Could someone tell the pros and cons of all these technologies. All the while I coded in javascript, so that way ExtJs seems to be the easy one for me to code. But I am curios to try GWT Ext, Is it true that it could do a lot just by writing few

ExtJs Vs Ext GWT Vs SmartGWT

你说的曾经没有我的故事 提交于 2019-11-29 07:31:02
I am going to start a new application which mainly consist NavigationPane, Grid, Toolbar. Layout should look like this demo page http://www.gwt-ext.com/demo/ I am quite confused which one to use in terms of writing less code, more performant, etc.. Could someone tell the pros and cons of all these technologies. All the while I coded in javascript, so that way ExtJs seems to be the easy one for me to code. But I am curios to try GWT Ext, Is it true that it could do a lot just by writing few lines of java code. For eg: To achieve the layout ( given in above gwt ext demo url), which one should I

Biggest GWT Pitfalls? [closed]

流过昼夜 提交于 2019-11-27 16:33:45
I'm at the beginning/middle of a project that we chose to implement using GWT. Has anyone encountered any major pitfalls in using GWT (and GWT-EXT) that were unable to be overcome? How about from a performance perspective? A couple things that we've seen/heard already include: Google not being able to index content CSS and styling in general seems to be a bit flaky Looking for any additional feedback on these items as well. Thanks! rustyshelf I'll start by saying that I'm a massive GWT fan, but yes there are many pitfalls, but most if not all we were able to overcome: Problem: Long compile

Biggest GWT Pitfalls? [closed]

二次信任 提交于 2019-11-27 04:08:37
问题 I'm at the beginning/middle of a project that we chose to implement using GWT. Has anyone encountered any major pitfalls in using GWT (and GWT-EXT) that were unable to be overcome? How about from a performance perspective? A couple things that we've seen/heard already include: Google not being able to index content CSS and styling in general seems to be a bit flaky Looking for any additional feedback on these items as well. Thanks! 回答1: I'll start by saying that I'm a massive GWT fan, but yes