gwt-ext

file download using RequestBuilder of gwt

微笑、不失礼 提交于 2020-01-25 21:26:10
问题 I need to implement file download .I don't want give any server side file urls to download directly .I created a servlet which will open the file and write it to stream of response.Now coming to front gwt i have onResponseReceived(Request request, Response response) which will be called on receiving the response .Now how to proceed further? .My operation required is ,file in stream should be downloaded to client computer. can one help me regarding this ? 回答1: Did you try Window.open

GWT Themes and Component Libraries

自作多情 提交于 2020-01-03 10:18:12
问题 Are there any good themes or component libraries for GWT? The built-in themes are rather plain for my purposes. I've seen gwt-ext and smartgwt, but those aren't that great looking. Are there any others that have a real nice look? I know of vaadin an I really really like the look, but from what I understand that just an entirely new framework. 回答1: The first thing to be careful of is that there are two frameworks which use EXT and GWT: GWT-Ext Ext GWT Both are based on the Ext JS component

Window close issues in gwt -ext

半腔热情 提交于 2019-12-13 21:12:57
问题 Hello all I am using gwt-ext in my application.In that application session time is 5 minutes. My issues is that If any window is open to render some information & in between session goes out then user logged out but the opened window is not closing in that case. So just want to know that how close opened window while session is timed out and user is logged out. Thanks in advance. 回答1: You can follow these steps to close tour any open window at sesssion time out: Whenever you make an Object of

ThemeChanger in GWT-Ext

一世执手 提交于 2019-12-13 16:36:37
问题 I'm using GWT 2.0, GWT-Ext 1.5 & Java 1.6 with Mozilla 3.6.x. I'm trying to implement ThemeChanger module as per this link. But I'm not able to achieve it. Can anyone look at my code & tell me what am I missing or doing wrong? Test.html <!doctype html> <html> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> <link type="text/css" rel="stylesheet" href="ThemeTest.css"> <link id="theme" rel="stylesheet" type="text/css" href="/public/resources/themes/green/css/xtheme

How do I make a gwt-ext window not resize when its content resizes?

▼魔方 西西 提交于 2019-12-12 19:57:53
问题 I've run setHeight(600) on a Window, that's it's initial size. I've also went ahead and done setAutoScroll(true) . When the content of the window resizes, the window itself resizes. What I want is for the window to stay fixed in size, and when the content grows larger, add scrollbars. I can get this if I resize the window manually, then let the content grow or shrink. 回答1: Have you checked the feature provided by GWT - setAutoHeights(false)? 来源: https://stackoverflow.com/questions/126881/how

Forget Password link using gwt

心不动则不痛 提交于 2019-12-12 19:35:03
问题 In my site i have a link Forgot Password when i click on this link a page will come so we fill emailId and send mail to particular gmailid(in this mail we have to generate a link). when we have click on generated link page open for reset password(like new password ar confirm password). My problem is that i am successfully able to send mail but when click on link not able to find emailId for reset password. Gmail Link : http://127.0.0.1:8888/abc.html?gwt.codesvr=127.0.0.1:9997#forgetPassword

Difference between gwt-ext and ext-gwt

和自甴很熟 提交于 2019-12-12 07:49:57
问题 Am I taking crazy pills, or are these two things pretty much identical? 回答1: 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

How to hide the caret in an HTML text input field?

旧时模样 提交于 2019-12-10 11:23:49
问题 If I have an HTML input field like this one: <input type="text" id="mytextfield"/> all browsers seem to show the caret (insertion point) in the field. Is is possible to prevent this from appearing by applying some CSS or javascript? (My reason for asking is that my input is the basis of a GWT-Ext combo box like the ones on http://www.gwt-ext.com/demo/#linkedComboBox - you can't type in it, but you can still see the caret, which is annoying). 回答1: What you could try is disable the input

SmartGWT with GWT?

旧街凉风 提交于 2019-12-09 01:24:28
问题 Greetings , I have been using GWT for few weeks and wanted a rich Table widget.I came across with SmartGWT library. Can I use SmartGWT widgets same way I develop using GWT or is there any special things I need to know ? thanks 回答1: You would not be able to just choose a widget from SmartGWT as they rely on the rest of the framework. SmartGWT is a thin wrapper using JSNI around the SmartClient library. This is a nice library, but you need to adopt it all or none. I believe this misses the

Ext GWT vs GWT-EXT

半城伤御伤魂 提交于 2019-12-08 15:27:10
问题 is there a difference between Ext GWT and GWT-Ext? Cos i was surfing Ext GWT and saw this page http://gwt-ext.com/demo/. any help guys? 回答1: ExtGWT is marketed and maintained by the same guys who developed ExtJs library. ExtGWT shares its look and feel and API structure with ExtJS. Contrary to popular perception, ExtGWT is not a wrapper around ExtJS javascript, but written ground up using GWT DOM and other low level GWT API's. It is 99% java based and uses no (or very little) JSNI to get