[gwt-contrib] Re: GWT 2.8.0 RC1 is here!

2016-07-29 Thread Sri Harsha Chilakapati
It's working for me in IntelliJ Ultimate. The community edition does not support the GWT. On Friday, 29 July 2016 11:47:05 UTC+5:30, Kay Pac wrote: > > That is fantastic! Thanks to you and the rest of the team for your hard > work. I am having trouble with IDE support, but that is related to

[gwt-contrib] Re: GWT 2.8.0 SNAPSHOT fails to compile

2016-07-22 Thread Sri Harsha Chilakapati
Yes obviously, I forgot, I just updated the version in the gwt config block, but still compiling with gwt-user and gwt-dev of beta 1. Thanks! On Friday, 22 July 2016 18:38:16 UTC+5:30, Thomas Broyer wrote: > > > > On Friday, July 22, 2016 at 3:02:04 PM UTC+2, Sri Harsha Chila

[gwt-contrib] GWT 2.8.0 SNAPSHOT fails to compile

2016-07-22 Thread Sri Harsha Chilakapati
I have been using GWT 2.8.0 Beta 1 till now, and my application is being compiled successfully. But with the snapshot I'm getting a error. It is here. ~~~Java Jul 22, 2016 1:42:21 PM java.util.prefs.WindowsPreferences WARNING: Could not open/create prefs root node Software\JavaSoft\Prefs at

GWT 2.4 issue with Firefox latest version

2013-01-24 Thread Sri
I have an web page developed with GWT 2.4 and I am using latest version of Firefox. Since Firefox 13, release my GWT code for the 'onclickEvent' does not seems to work properly. On click of a button I am opening a window and when clicking the button again(without closing the pop up window) I

question on PlaceChangeEvent

2012-01-16 Thread sri
.. -sri -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-toolkit@googlegroups.com. To unsubscribe from this group, send email to google-web-toolkit+unsubscr...@googlegroups.com. For more options

Re: Basic question on activity and places

2012-01-04 Thread sri
, which component is responsible for deciding which ActivityMapper be used when you are in a Place? Thanks. -sri On Jan 3, 2:26 pm, Jens jens.nehlme...@gmail.com wrote: If you have multiple display areas in your app you would have multiple ActivityMappers (one per display area, e.g. a master area

Basic question on activity and places

2012-01-03 Thread sri
indicates a one-to-one between Activities and Views, but does not mention between Place and Activity. Thanks in advance. -sri -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-toolkit@googlegroups.com

Re: RunAsyncCallback

2009-11-14 Thread Sri
. I am 'guessing' that it won't work , but I could be wrong. --Sri 2009/10/29 skrat dusan.malia...@gmail.com Okay, that's kind of clear. Async Package (gateway class) looks nice, but how does it fit within Gin and DI? On Oct 26, 4:24 am, Sripathi Krishnan sripathi.krish...@gmail.com

Qestion on Focus Panel

2009-10-08 Thread sri
( on one of the cells of the Grid ) the Grid's onCellClicked is never called - instead the BlurHandler onBlur is called. Do I need to do anything specific to not trigger onBlur when a child is clicked? Thanks in advance, -sri --~--~-~--~~~---~--~~ You received

Re: history token in window.title / document.title (browser window title)

2009-09-10 Thread Sri
re. 1) Window.setTitle() is the preferred method. Typically, you avoid using the DOM based classes directly in your GWT Application. re. 2) History has nothing to do with the title. Both are independent.. On Sep 10, 5:39 pm, akumar anshulatashi...@gmail.com wrote: Hi, I am working on the

Re: GWT RPC miss timeout

2009-09-10 Thread Sri
RPC Services do have timeouts, its just that by default they are set to 0, which effectively means no timeout. Here's what you can do to set timeouts on your services - a) Create a custom RpcRequestBuilder, and set the desired timeout public class MyRpcRequestBuilder extends RpcRequestBuilder

Re: Odd unable to find type error

2009-09-10 Thread Sri
Your client side code must reside under the client sub-package relative to where your module.xml is defined. If classes are not under the client package, gwt can't find them. In your case, your class should be defined at the location com/example/ gwt/selector/client/ArticleSelector.java or

Re: URL and GET method

2009-09-10 Thread Sri
Anything after the # can be picked up by calling History.getToken() method. On Sep 10, 12:30 pm, Pion onlee2...@gmail.com wrote: I just sawhttp://en.wikipedia.org/wiki/Uniform_Resource_Locator#Syntax which mentions about the # sign. How do I retrieve the value of FOO which includes on this

Re: Problem with call function external javascript

2009-09-10 Thread Sri
The section Using JSNI to access external JavaScript code is what you are looking for. --sri On Sep 10, 11:20 am, Senshi cristian.ro...@gmail.com wrote: Hi I have Problem with call function external javascript in IE7 not draw this in reload html page                         texto = new HTML

Re: Why does this test fail ?

2009-09-10 Thread Sri
isAttached() won't return true unless the Widget has been added to the DOM. In your case, you should do something like RootPanel.get().add(component); After that, the isAttached() method would return true.. --sri On Sep 10, 7:40 am, hjo1620 hjo1...@gmail.com wrote: CustomerComponent extends

Re: Demo servlet rejects java.lang.IllegalStateException: STREAM when invoking resp.getWriter()

2009-09-10 Thread Sri
using response.getOutputStream() method. That should solve the problem. --sri On Sep 10, 3:02 am, 6real xirgon...@gmail.com wrote: Dear all, I met an issue with my servlets, then I try the demo servlet given by Google : --- import java.io.IOException; import

Re: Servlets 3.0 and GWT

2009-09-09 Thread Sri
RequestCallback() { --sri On Sep 9, 5:47 am, Ittai etai...@gmail.com wrote: Hi All, I'm stepping into the world of AJAX and due to a need I have in strong built-in Server Push technologies I'm giving the Servlets 3.0 (under Java EE 6 preview) a try. I'm posting here because my client side

Re: What permutations get compiled ?

2009-09-09 Thread Sri
Typically, supported browsers and supported languages generate the most permutations. If you want to reduce the number of parameters, you can paste this line in your *.gwt.xml !-- Only compile for firefox to reduce build time -- set-property name=user.agent value=gecko / Similarly, if you

Re: Well that's a shame. shouldn't be that hard to get started with GWT

2009-09-08 Thread Sri
it from source. It is very easy and painless to do it, and you will be happy with the results. Just follow instructions http://code.google.com/webtoolkit/makinggwtbetter.html#workingoncode and you will get the binaries inside the build/dist folder. --Sri On Sep 7, 4:39 am, Paul Robinson ukcue

Re: Hosted mode windows position

2009-09-08 Thread Sri
You should stop using the hosted mode browser, and start using the oophm plugin. It gives you the same features of hosted mode browser within firefox. This should solve your annoying problem. On Sep 7, 10:40 am, Andrey mino...@gmail.com wrote: Hello! Is there any way to restore previous

Re: Can it possible.. I need your ideas...

2009-09-08 Thread Sri
Image Bundle is not going to help you in this case. ImageBundle requires all images to be available at compile time. In your case, the users can upload the images at run time, so you need a different solution. You should just write a servlet which returns the appropriate image for the logged in

Re: fetching a url from another domain

2009-09-08 Thread Sri
HTML explaining the problem. Any other approach you adopt will have the same problems though. --sri On Sep 7, 9:33 am, palomer rathere...@gmail.com wrote: Dear gwt group, I'd like to fetch the contents of a url located in another domain and print it on the screen. I've pasted code that tries

Re: seo and google web toolkit

2009-09-08 Thread Sri
Just a small correction about UiBinder.. It is not going to help in SEO in anyway. UiBinder allows you to put arbitrary HTML content in an XML file -- but that is processed at compile time only. The browser never sees that arbitrary HTML content directly. Its all encoded as javascript, so you are

Re: Buttons with Round Edges

2009-09-08 Thread Sri
Look at the class DecoratorPanel. Its sole purpose is to give you the ability to add Rounded Corners. On Sep 8, 2:47 am, rjcarr rjc...@gmail.com wrote: It doesn't look like the gwt provided factory buttons have corner options (even though I thought they did). My advice would be to get your

Re: HttpServletRequest returns wrong session?

2009-09-08 Thread Sri
GWT doesn't do anything with the session, so it is strange you are facing such a problem. Perhaps you could make a simple servlet/jsp (independent of gwt) which prints the same information as above (ie. sessionid and user object), and access the URL via a browser. If you are seeing the same

Re: GWT RPC Problem with JDP

2009-09-08 Thread Sri
You cannot return StreamingQueryResult from your RPC Method. The RPC Method must return an object that implements Serializable and has a default no-args constructor. Also, this class should not depend on any server specific class. Remember - the object you return from your RPC method will

Re: Country combobox and lookup country by IP

2009-09-07 Thread Sri
re.1 ) No, GWT doesn't have such a combo box. You will have to create one and populate it. re.2 ) There is nothing that GWT provides out of the box. You'd have to write a gwt service which returns the country name based on the ip address and use it to select the country. To actually implement the

Re: Problem when calling a GWT RPC Service

2009-09-06 Thread Sri
It is designed to function that way. GWT services are Asynchronous, there is no guarantee on the order of execution of the onSucess() method of AsyncCallback. I would recommend you go through this link -

Re: How to use multiple servers in a single client

2009-08-30 Thread Sri
Simply put, it can't be done. Cross Domain restrictions require that javascript code only communicate with the server from which it originated. So, all RPC requests that you make must go to the same server. However, you can have a simple facade on your server. You can let your webserver simply

Re: Has anyone used gwt-validation api? or is there a better one?

2009-08-30 Thread Sri
Its a good framework as long as you only want to do client side validations. The moment you want to do server side validations, GWTC starts complaining. The Annotation based framework would start requiring server side classes, which won't be available to GWTC. On Aug 29, 10:51 pm,

Re: Making a fancy GWT Chart

2009-08-30 Thread Sri
There are multiple ways to achieve this - If you want to continue generating images in java, you will also have to write a Servlet which returns the BufferedImage in one of the formats (gif/jpeg etc). Then, in your ImageWidget you would give the URL for your servlet. In the servlet, you would do

Re: Based on access privileges enable/ disable buttons at the time of application startup

2009-08-30 Thread Sri
) Be aware that client side disabling/enabling buttons is only usability and not security. In each your RPC Services you must check if the logged in user has the necessary permissions to perform the operation. Again, it is a matter of using the session object to see if the user is authorized. -sri

AbstractImagePrototype v/s ImageResource - what's the direction?

2009-08-26 Thread Sri
, I see that ImageResource provides functionality similar to that of AbstractImagePrototype (combining multiple images into 1 using the data: url scheme). All this leaves me a bit confused - which paradigm should I be using? thanks! --sri --~--~-~--~~~---~--~~ You

Re: When run jsp in GWT 1.7, error occurred Syntax error, parameterized types are only available if source level is 1.5

2009-08-24 Thread Sri
Are you using websphere? I have seen that error before when working with websphere. You must be using generics (like ArrayListString) in your jsps, and websphere doesn't seem to allow that unless you change some setting.. This definitely has nothing to do with GWT. I would recommend searching

:Drawing Lines using GWT

2009-01-19 Thread Sri
Hi , I am developing graphic oriented application using GWT. Can we draw lines ie straight lines and as well as curvy lines ? In my application I need to connect the vertical boxes using lines. Please give me some pointers to implement this functionality.

GWT application and Google AppEngine

2008-09-19 Thread sri
to demonstrate how it can be acheived. regards, Sri --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to Google-Web-Toolkit@googlegroups.com To unsubscribe

Re: GWT application and Google AppEngine

2008-09-19 Thread sri
: Java returned: 1 Total time: 1 minute 18 seconds On Sep 19, 11:30 pm, Jeremiah Elliott [EMAIL PROTECTED] wrote: have you taken a look at this?http://code.google.com/p/python-gwt-rpc/ On Fri, Sep 19, 2008 at 5:34 AM, ajay jetti [EMAIL PROTECTED]wrote: Hi Sri Even im facing the same problem

Text Area autosize

2008-08-25 Thread sri
for any help. -sri --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to Google-Web-Toolkit@googlegroups.com To unsubscribe from this group, send email to [EMAIL