Re: Manually Trigger Browser Resize

2013-08-21 Thread AgitoM
Thank your help so far Jens. Any example on which Window method I can use? I tried looking for it, but couldn't find it. On Wednesday, August 21, 2013 8:01:34 pm UTC +8, AgitoM wrote: > > In one of my applications I am ResizeHandler to resize the GUI of my app. > This works fine, bu

Re: Manually Trigger Browser Resize

2013-08-21 Thread AgitoM
browser resizes. However now I would like manually trigger the browser resize event to force a WebKit browser to redraw. simply invoking the handleResize method does not do the job. On Wednesday, August 21, 2013 8:01:34 PM UTC+8, AgitoM wrote: > > In one of my applications I am ResizeHand

Manually Trigger Browser Resize

2013-08-21 Thread AgitoM
In one of my applications I am ResizeHandler to resize the GUI of my app. This works fine, but there is one part in my code where I would like to manually trigger a Resize. Does anyone know how I can do that? -- You received this message because you are subscribed to the Google Groups "Google W

Re: GWT Button becoming transparent due to CSS?

2013-08-21 Thread AgitoM
Well I further investigated the problem, and it turns out its a bug in WebKit browsers. The widget is not redrawn by the browser, despite the fact it's newly created. Does anyone know how to manually trigger a widget redraw or a browser Resize event? Hope anyone knows. -- You received this m

GWT Button becoming transparent due to CSS?

2013-08-20 Thread AgitoM
Am currently developing a website for use in mobile browsers, and noticed that on some of the hand phones, buttons are not shown as visible. This sometimes happens upon the creation of a widget, on other occasions when re-creating a certain widget. Changing the orientation of the screen can make

How to use DeckLayoutPanel?

2012-08-22 Thread AgitoM
Been trying to implement a iPhone like transition between widgets for a mobile project I'm working on Basically I need transition from left to right, and from right to left. Read online that this can be accomplished using a DeckLayoutPanel. Been trying to get an example to work, but not matter wh

Re: GWT Mobile App Widgets

2012-05-02 Thread AgitoM
ack > > to the web as we know it today where may browsers exists with > > difference in behavior not only between them but even among versions. > > > Best of luck and wish your project the best. > > > Alfredo > > > On Mon, Apr 30, 2012 at 2:01 PM, AgitoM w

Re: GWT Mobile App Widgets

2012-05-01 Thread AgitoM
webkit, many don't exactly behaving consistently. Throw into the mix > > your request and it's almost starting to feel like we are right back > > to the web as we know it today where may browsers exists with > > difference in behavior not only between them but even

Re: GWT Mobile App Widgets

2012-04-30 Thread AgitoM
ly mentioned. > > Regards, > > Alfredo > On Apr 30, 2012 10:35 AM, "AgitoM" wrote: > > > > > > > > > Does anyone know a decent library that contains GWT Widgets for the > > development of Mobile Apps in GWT? > > > Over the past few days I&

GWT Mobile App Widgets

2012-04-30 Thread AgitoM
Does anyone know a decent library that contains GWT Widgets for the development of Mobile Apps in GWT? Over the past few days I've been experimenting with gwt-mobile-gui. Though this library is great, it doesn't appear to be working on all browsers. (or at least I can't get it to work on Firefox).

Re: byte array to Image

2011-09-27 Thread AgitoM
Decided to deal with the 32kb limit in Internet Explorer 8. (Internet Explorer 9 is not a problem). Dealt with the problem by creating a servlet that outputs the byte array as a image. I'm sending the ID of the image, in this case a map, to the servlet using the GET method. This is the code for th

Re: byte array to Image

2011-09-18 Thread AgitoM
And at the client side, you just set the value into an image > element's "src" attribute. > >     But be careful, IE CAN NOT take charge of an image that bigger > than 32KB by using the "Base64" way. > >     Hope this can help you. > > On 16 sep, 12:

byte array to Image

2011-09-16 Thread AgitoM
Hi all, >From a web service I am receiving a byte array that represents a image. I need to somehow squeeze this byte array into a image widget or similar widget on my client side. First I tried to convert the byte array to a base64 string: String base64 = Base64Utils.toBase64(image); base64 = "da

Developing Google Docs like Feature

2010-11-17 Thread AgitoM
For the project I am working on, I need to develop a Google Docs like feature since we should support collaborative document editing. I already have a mechanism based on Comet that can synchronize data, but I need to be able to update a text onscreen based on what is being keyed in on the client,

A Alternative to GWT-Connectors?

2010-11-16 Thread AgitoM
For my currently project I am attempting to implement a drag and drop diagram/modeling feature. Essentially I need to be able to connect 2 composite widgets, that have been dragged on a Absolute Panel. After connecting, the widgets needs to be able to me moved around. Next to that, it must be possi

GWT-Connectors: Delete Shape

2010-11-16 Thread AgitoM
For a Education project I am doing using GWT, I need to implement a diagram modeling feature. I am attempting to do this in GWT. The type of model I am attempting to construct essentially requires a Widget to be dragged to a "canvas". (Currently implemented as a AbsolutePanel with GWT DnD for the

Re: Timer to Refresh a Table View

2010-07-15 Thread AgitoM
You can use this: public void refreshTable() { Timer t = new Timer() { public void run() { //Retrieve Data //Refresh table refreshTable(); } }; // Schedule the timer to run once in 5 minutes. t.schedule(30); } This essentially this creat

Re: Google Web Toolkit Lagging

2010-07-14 Thread AgitoM
> BR, > ~A > > On Mon, Jul 12, 2010 at 10:12 AM, AgitoM wrote: > > Since somewhere last week, whenever I try and run a application I > > build in debug mode, the application is heavy lagging. This is the > > case in any browser that I use, and was not the case until a f

Google Web Toolkit Lagging

2010-07-11 Thread AgitoM
Since somewhere last week, whenever I try and run a application I build in debug mode, the application is heavy lagging. This is the case in any browser that I use, and was not the case until a few days ago. Over the past few days there have been no major changes to the source code of the applicati

Remove DecoratedTabPanel Margin

2010-07-05 Thread AgitoM
For a large application I am developing I am using a DecoratedTabPanel in a DecoratedTabPanel, to create the illusion of sub Tabs. However, the content of a tab has a white margin around it, which makes the tabPanel inside the tabPanel look rather ugly. How can I remove the white margin? I've bee

Re: Calling RSS service in GWT from the server side

2010-06-20 Thread AgitoM
As promised, here is the code that finally did the trick for me. The key was using the java.net.URL Object. This object does work when compiled on the server side. The code: The relavant imports: import java.io.BufferedReader; import java.io.InputStreamReader; import java.net.URL; import java.ne

Re: Invoke SOAP Web Service from GWT on the server side.

2010-06-18 Thread AgitoM
ask any other java group, too > > Stefan Bacherthttp://gwtworld.de > > On Jun 17, 5:59 am, AgitoM wrote: > > > For a big GWT project I am working on, we need to to retrieve data > > from other computer systems. Based on my previous experience, a good > > way t

Re: Calling RSS service in GWT from the server side

2010-06-18 Thread AgitoM
Managed to solve the problem. Used a different object to connect to YAHOO. Don't know why my first solution didn't work though. I do not have access to my corrected code currently, but will post the right solution here as soon as possible. -- You received this message because you are subscribed

Calling RSS service in GWT from the server side

2010-06-17 Thread AgitoM
Over the past few days I have been working on a small GWT based application which retrieves and displays Weather information from YAHOO RSS in real time. To get information from the YAHOO RSS feed, I am using the HttpClient from the org.apache.commons library. Using this library I attempt to make

Invoke SOAP Web Service from GWT on the server side.

2010-06-17 Thread AgitoM
For a big GWT project I am working on, we need to to retrieve data from other computer systems. Based on my previous experience, a good way to integrate these two systems, is to integrate them together using a SOAP based Web Service. Preferably I would like to server side of my GWT project to invo