Re: GWT2.8 : org.apache.xerces.parsers.XIncludeAwareParserConfiguration cannot be cast to org.apache.xerces.xni.parser.XMLParserConfiguration

2016-12-15 Thread Adam Gerbert
Ran into the same issue after upgrading to 2.8 from 2.7. Only happened in super dev mode, as the xerces dependency was coming from gwt-dev.jar. I fixed it in the same manner as Ian Whyman (thanks!), by including the dependency explicitly. -- You received this message because you are

Re: Teavm

2015-12-02 Thread Adam M
used JSInterop or JSO so can't compare the two. > > Anyway, what is interesting is the Java Source Code to Javascript vs Java > Byte Code to JavaScript issue. > Wonder if GWT creators ever debated this issue when they started work on > GWT. > > > > > > > On Tuesda

Re: Teavm

2015-12-02 Thread Adam M
I feel your pain - too bad that everybody are so hell bend to develop "better mouse trap" in JavaScript so they are lost sight of different ways of doing things. I'm planning to start working on TeaVM in the next 6 months - maybe approach every little bit helps will move TeaVM from corner

Re: Teavm

2015-12-01 Thread Adam M
TeavVM seams be very interesting project however for me it looks like it serves different needs that GWT. It has tons of very interesting stuff and using Java Byte Code for compilation to JavaScript makes it almost 100% language agnostic as source code input (in theory - you can compile it to

Re: images not showing in any browser

2014-04-23 Thread Adam
When i made the first post i was experiencing 2 problems, one the images weren't showing, and two the path wouldn't change, no matter how i tried, ie (1.jpg) or (2.jpg) etc. However this was resolved after i created a new project. Your right though NewProject did in fact show twice, i also

Re: images not showing in any browser

2014-04-19 Thread Adam
in the path.. However i've a project with images and i put the image in war/Images/1.jpg and in the code i've ... ... Image img = new Image(); img.setUrl(Images/1.jpg); Panel p = new Panel(); p.add(img); ... ... On Wed, Apr 16, 2014 at 10:51 PM, Adam adam.t

Re: images not showing in any browser

2014-04-19 Thread Adam
I've also tried doing the following which made no difference. Image img = new Image(); img.setUrl(Images/1.jpg); -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop receiving emails from it, send an

images not showing in any browser

2014-04-16 Thread Adam
Hi, i'm new to gwt programming, for some reason the image wont show in any browsers, any idea's? Also the path seems to be stuck on/myproject//MyProject/images/1.jpg Image img = new Image(/MyProject/images/12345.jpg); vPanel.add(img); [WARN] Server class

Re: Best Practices for Server-side Authentication in GWT 2.5+

2014-01-10 Thread Adam Browning
If you're just looking for simple authentication then you may want to take a look at: http://shiro.apache.org/. I've used it for simple authentication all the way up through using an LDAP backing store and it's pretty simple. It has some cool things like @RequiresAuthentication annotations that

[gwt-contrib] GWT CellTable Column Header

2013-09-16 Thread Adam Arjomandi
Is there any plan to add Filtering function to the GWT CellTable Column Header. -- http://groups.google.com/group/Google-Web-Toolkit-Contributors --- You received this message because you are subscribed to the Google Groups GWT Contributors group. To unsubscribe from this group and stop

Stack trace deobfuscation problem - missing function names

2013-05-13 Thread Adam
You can see the two files here: https://www.dropbox.com/sh/h1bwe9e8jr2040x/RVlEdqrvHg Thanks in advance for your time. Adam -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop receiving emails from

Re: Celltable loading state

2013-03-13 Thread Adam
This works for me as well with DataGrid and AsyncDataProvider and 2.5rc1. I'll take hackish over not showing the loading indicator at all. Thanks guys. On Tuesday, May 15, 2012 12:38:35 PM UTC-4, Jens wrote: You need to make sure that the cell-widget thinks the current page size is

Stillborn dragstart event

2013-03-03 Thread Adam Augusta
The ClientWebApp sample application in GWT 2.5 contains example drag-and-drop code, as seen below. When I use it, it works great the first time I drag a TaskTemplate. On subsequent drags, event.getDataTransfer() fails because event.dead=true. Halp? public class DesktopTaskEditView extends

Re: Stillborn dragstart event

2013-03-03 Thread Adam Augusta
I should add that this only happens in dev mode. The compiled JS works fine. On Sun, Mar 3, 2013 at 4:10 PM, Adam Augusta rox...@gmail.com wrote: The ClientWebApp sample application in GWT 2.5 contains example drag-and-drop code, as seen below. When I use it, it works great the first time I

Problem with DynaTableRf Sample with Maven

2013-02-26 Thread Adam Augusta
I get an error when I try to run the DynaTableRf sample application with maven. Can anyone enlighten me? Sample app from GWT 2.5.0 release. Maven 2.2.1 There are four CG errors (one for each domain object?), then I get a The RequestFactory ValidationTool... error. Adams-MacBook-Pro:DynaTableRf

Re: Problem with DynaTableRf Sample with Maven

2013-02-26 Thread Adam Augusta
/goals configuration sources source${project.build.directory}/generated-sources/apt/source /sources /configuration /execution /executions /plugin On Tue, Feb 26, 2013 at 4:12 PM, Adam Augusta rox...@gmail.com wrote: I

Re: [gwt-contrib] GWT 2.5 Final - Next Week

2012-10-25 Thread Adam Hawthorne
that. Thanks for your response, Adam On Thu, Oct 18, 2012 at 11:56 AM, unnurg unn...@google.com wrote: Hi Guys - We are going to be pushing the 2.5 RC2 (plus 1-2 minor cherrypicks) to Final next week - if there are any problems, please let me ( unn...@google.com) know before Monday morning

ValueBoxEditorDecorator error message style?

2012-10-22 Thread Adam Dean
of other method to change this to red. thanks, Adam -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/nNi4PIFOWgEJ. To post to this group, send email

Re: Retrieving values from fields in GWT generators

2012-09-11 Thread Adam Gordon
On Monday, September 10, 2012 3:14:40 PM UTC-6, Thomas Broyer wrote: What's wrong with accessing the field directly? (using JSNI to bypass the Java access rules) Maybe have a look at the kind of code generated by the JSR303 built-in support. I was under the impression that JSNI was more

Retrieving values from fields in GWT generators

2012-09-10 Thread Adam Gordon
). Anyone have any insight? Thanks. --adam -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/guHbVU1TM2cJ. To post to this group, send email

Re: Retrieving values from fields in GWT generators

2012-09-10 Thread Adam Gordon
, September 10, 2012 6:36:50 PM UTC+2, Adam Gordon wrote: I'm building a GWT generator and I'm parsing a class. I've gotten to the point where i have a JField[] and am iterating over the class fields. I need to know how to get the value from a field and the GWT documentation is a bit lacking

Re: Not able to use Celltable for a requirement where I need different widgets under one column.

2012-09-06 Thread Adam T
/CellDataGridExample.java. (it is still work in progress just now, so missing comments, but should be relatively self explanatory) Hope that helps in some way! //Adam On Sunday, September 2, 2012 11:43:43 AM UTC+2, Saurabh Tripathi wrote: Hi all, I am stuck here with a requirement which

Re: GWT In Eclipse Debug Mode All Of A Sudden is Super Slow

2012-09-03 Thread Adam Sas
Hi, Recently I experienced the same problem. Have you figured out how to solve it? Best regards W dniu poniedziałek, 11 kwietnia 2011 15:54:44 UTC+2 użytkownik innusius napisał: No breakpoints and it is slow as hell. This is some code issue as I see that after each reload of debug , it

Re: Abridged summary of google-web-toolkit@googlegroups.com - 8 Messages in 4 Topics

2012-06-25 Thread Adam Bradley
-- 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,

[no subject]

2012-06-25 Thread Adam Bradley
-- 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: Abridged summary of google-web-toolkit@googlegroups.com - 38 Messages in 16 Topics

2012-06-22 Thread Adam Bradley
-- 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,

Unexpected server to client exception translation occurring

2012-04-10 Thread Adam Gordon
translated. Anyone have any idea what's going on here and how to fix it? Thanks. --adam -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/0r1EgRhF4h4J

Re: Unexpected server to client exception translation occurring

2012-04-10 Thread Adam Gordon
the error thrown on the server and writes a generic response. The solution was to override the method and rather than call the RPCServletUtils method, to copy and tweak it so that it sends back the message I need to send. On Tuesday, April 10, 2012 9:26:19 AM UTC-6, Adam Gordon wrote: We're building

Re: Can't open my code with the GWT Designer

2012-04-08 Thread Adam Trojnar
On ubuntu 12.04 with OpenJDK and Java version 1.7.1 I can't open GWT DESIGNER to :( but on ubuntu 11.10 with Java 1.7.3 GWT Designer working good. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Re: FF10, here we go again

2012-02-01 Thread Adam
Well, hopefully their long term support of FF10, will allow it to be used for GWT dev for a while w/o all the hassle of updates all the time. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Activity / Place + History.back()

2012-01-28 Thread Adam
as to the outcome. I know for a fact by staring at the url bar that there is a change. So is this a bug that others have see or am I doing something wrong? Any help would be appreciated. -Adam -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group

Re: Activity / Place + History.back()

2012-01-28 Thread Adam
when History.back() was called it was checking against a stale where object. -Adam On Jan 28, 12:44 pm, Adam ambr...@gmail.com wrote: I'm having an issue where the History.back() is intermittently not working. I'm using Places mapped to each activity in my application and navigating forward

Re: Formatting lists with GWT i18n API

2011-12-15 Thread Adam T
, elemento: {0,list,text}}) String formatElements(@PluralCount ListString elements); } //Adam On 15 Dec, 00:43, Luiz Mineo luiz.mi...@gmail.com wrote: Hi, I'm trying to format a list of Strings using a Messages interface: @DefaultLocale(pt_BR) public interface AppMessages extends Messages

Re: How to add click events to multiple images in a cell/celltable

2011-10-17 Thread Adam
) { cell.setValue(context, parent, value); } } It was much easier and more flexible than extending every cell type i wanted to be clickable. Now you can just use new ClickableCellDecorator(new ImageCell())) and you should see events. Hope this helps, Adam On Oct 17, 4:36 am, Thomas

Re: How to add click events to multiple images in a cell/celltable

2011-10-14 Thread Adam
I use CompositeCell for this type of thing. Create a composite of 2 cells, each with an image in them, and each cell handling click events. Each cell can detect clicks in their respective FieldUpdaters and still be rendered in the same cell. Hope this helps, Adam On Oct 14, 9:41 am, Thomas

Re: Unable to suppress header sorting in DataGrid using GWT 2.4

2011-10-13 Thread Adam
will be changed? On Oct 12, 4:31 pm, Adam asnyde...@gmail.com wrote: I am trying to add a button to a DataGrid header by extending Header and I've been able to do that and detect the click event just fine. My problem is that the underlying AbstractCellTable code is firing ColumnSortEvents for every

Unable to suppress header sorting in DataGrid using GWT 2.4

2011-10-12 Thread Adam
I am trying to add a button to a DataGrid header by extending Header and I've been able to do that and detect the click event just fine. My problem is that the underlying AbstractCellTable code is firing ColumnSortEvents for every click in the header and there is no simple way to stop that

Re: Exception in thread UnitWriteThread

2011-07-28 Thread Adam
the number of concurrent threads to 2, which was the same before we updated GWT. -Adam On Jul 27, 9:43 pm, Adam ambr...@gmail.com wrote: We recently upgraded from GWT 2.1 to GWT 2.4 Beta.  Since the update we have been getting Exception in thread UnitWriteThread java.lang.NullPointerException

Exception in thread UnitWriteThread

2011-07-27 Thread Adam
We recently upgraded from GWT 2.1 to GWT 2.4 Beta. Since the update we have been getting Exception in thread UnitWriteThread java.lang.NullPointerException. It doesn't seem to cause any problems in that the code still successfully compiles and runs. Here's some GWT Compiler debug output:

Re: Populating ListBox's using Activities and Places

2011-07-13 Thread Adam
We use a slight various of Thomas' suggestion. We introduced a new interface / class called a Broker which we define all of our rpc calling methods in. Then be default we typically have the activity implement the Broker interface, but if need be we could have a new class implement it. We pass

Re: Shortcomings in Places

2011-06-05 Thread Adam T
detects the user is logged in, and so the requested activity is started, rather than the login activity. Hope that is of some use! //Adam On 5 Juni, 11:34, Thomas Broyer t.bro...@gmail.com wrote: On Saturday, June 4, 2011 11:47:08 PM UTC+2, Jeff Schnitzer wrote: I'm trying to implement a simple

Re: Custom Clickable Cell with CellTable

2011-05-12 Thread Adam
of a better way. -Adam On May 12, 10:53 am, matttai matt...@hotmail.com wrote: Hi Adam, What exactly is it that you are trying to achieve by doing this? If you wish to find thecellthat was clicked and manipulate it you can also do it this way : Add clickHandler to table/grid Call getSource

Custom Clickable Cell with CellTable

2011-05-06 Thread Adam
Hey Gang, I've created a lightweight custom cell that extends AbstractCell. I've included the code below. What I've determined is that the parent is the DIV associated with the cell. What I'm trying to do is make it so if I click anywhere in the cell including the text of the tds that the

[gwt-contrib] Re: Future of CellTable

2011-04-19 Thread Adam Bender
Just wanted to see if there have been any updates regarding the CellTable and the use of fixed headers + scrollable content areas. I have been keeping an eye on the commit logs and havent seen anything related to scrolling. Is this a feature that is still planned for 2.3? Thanks, Adam On Feb

[gwt-contrib] Re: Future of CellTable

2011-04-19 Thread Adam Bender
Excellent, thanks for the update. Adam On Apr 19, 10:03 am, John LaBanca jlaba...@google.com wrote: I'm working on it this week.  It won't be included in 2.3, but should be committed to trunk next week. Thanks, John LaBanca jlaba...@google.com On Mon, Apr 18, 2011 at 2:14 PM, Adam

CompositeCell

2010-11-08 Thread Adam
and define our own implementation, but I am hoping that we have just miss understood CompositeCell. Any thoughts would be greatly appreciated, - Adam -- 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

Re: CompositeCell

2010-11-08 Thread Adam
to hide spans that aren't needed.  If its the latter, you will probably want to extend AbstractEditableCell and copy the examples in TextInputCell or CheckboxCell. Thanks, John LaBanca jlaba...@google.com On Mon, Nov 8, 2010 at 7:38 AM, Adam ambr...@gmail.com wrote: We're in the process

Re: Animate an images rotation

2010-10-29 Thread K. Adam Christensen
angles. I think we can say that there is a reason the 360 degree spinning logo images from the 1990s are gone today :) Cheers, - Adam -- 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-tool

NoSuchMethodError in BeanParser

2010-10-12 Thread Adam
] at com.google.gwt.dev.CompileTaskRunner.runWithAppropriateLogger(CompileTaskRunner.java: 81) [java] at com.google.gwt.dev.Compiler.main(Compiler.java:156) -Adam -- 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

Re: NoSuchMethodError in BeanParser

2010-10-12 Thread Adam
Nevermind... It was a mismatch of 2.0.x and 2.1 jars. Apparently there's UiBinder code in gwt-server.jar. Go figure! -Adam On Oct 12, 1:48 pm, Adam ambr...@gmail.com wrote: Hey Gang, I was hoping someone might have an idea why this is happening.  I have two projects of 8 that use UiBinder

Re: GWT panel for HTML UL/LI lists

2010-10-04 Thread Adam Mark
Just extend FlowPanel and override setElement: public class MyList extends FlowPanel { ... @Override protected void setElement(com.google.gwt.user.client.Element elem) { super.setElement(DOM.createElement(ul)); } ... } On Oct 2, 5:42 am, Markus Kramer

PagingScrollTable Future

2010-09-30 Thread Adam
I've done some googling around and curious if anyone knows what the future holds for PagingScrollTable. We're currently using GWT 2.0.4 and have a need for such a table, but our hesitant to start using it if it's going to be replaced in the near future. I've not done a tone of digging around GWT

Re: PagingScrollTable Future

2010-09-30 Thread Adam
So the features were similar? Meaning support for pagination and sorting? Thanks, Adam On Sep 30, 12:37 pm, Gal Dolber gal.dol...@gmail.com wrote: I did the migration from PagingScrollTable to CellTable 2 weeks ago. It didn't take very much.. less than a day. The new table work awesome

Re: UiBinder Performance

2010-08-14 Thread Adam
Thanks Falcon, I have been waiting for GWT 2.1 to come out and the enhancements look promising. Unfortunately we can neither continue to wait nor use GWT 2.1 M2 for our product code. So I was hoping to do something in the mean time. -Adam On Aug 13, 4:32 pm, Falcon msu.fal...@gmail.com wrote

UiBinder Performance

2010-08-13 Thread Adam
per row). So based on my example above we'd have 100 model objects, and UiBinder fragmets. The reason we've considered this method is to remove html code generation in Java. I was wondering what everyone thought about this or if they have another idea? -Adam -- You received this message because

Re: GWT DevMode and gwt.codesvr parameter

2010-05-26 Thread Adam
if you're putting the same URL in the location bar as shown it'll log you out. Thanks for the code examples, I'll let you know what I end up doing. -Adam On May 25, 10:34 pm, Jeff Chimene jchim...@gmail.com wrote: On 05/25/2010 01:14 PM, Adam wrote: Hey Gang, I'm having an issue

Re: GWT DevMode and gwt.codesvr parameter

2010-05-26 Thread Adam
Jeff, Yeah I have a working prototype of that working now. The route we've decided to take though is to have a developer mode and if set a request filter will auto authenticate allowing direct connection to GWT EntryPoint URLS with gwt.codeSvr included. Thanks for all your help Jeff. -Adam

GWT user.agent and rename-to

2010-05-26 Thread Adam
. Any help would be most appreciate. -Adam -- 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-tool...@googlegroups.com. To unsubscribe from this group, send email to google-web-toolkit+unsubscr

GWT DevMode and gwt.codesvr parameter

2010-05-25 Thread Adam
entrypoint from within the app and have the debugging take place when I hit the GWT module. The issue is that gwt-codesvr is lost once you start to click around on the application. -Adam -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post

Re: GWT Compiler 2.0 Changes

2010-05-18 Thread Adam
com.choicepoint.wps.gwt.common.model.customer.GCustomer) On May 17, 4:28 pm, Adam ambr...@gmail.com wrote: Does anyone know if the GWT 2.0 Compiler has become more strict or made some breaking changes?  I've recently attempted to update from GWT 1.7.1 to GWT 2.0.3 and we're getting tons of messages stating is not assignable

GWT Compiler 2.0 Changes

2010-05-17 Thread Adam
Does anyone know if the GWT 2.0 Compiler has become more strict or made some breaking changes? I've recently attempted to update from GWT 1.7.1 to GWT 2.0.3 and we're getting tons of messages stating is not assignable to 'com.google.gwt.user.client.rpc.IsSerializable' or 'java.io.Serializable'

GWT Compiler Update from 1.7.1 to 2.0.3

2010-05-14 Thread Adam
, but what boggles me is that a large number of GWT code classes are also showing this error. -Adam -- 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-tool...@googlegroups.com. To unsubscribe from

detect a mouseup when mouse is off the browser

2010-05-14 Thread Adam D
buttons being pressed. Does anyone knows how to detect a mouseup event when it happens outside the browser? Thank you all happy coding Adam -- 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-tool

Re: detect a mouseup when mouse is off the browser

2010-05-14 Thread Adam D
Well Google spreadsheet is able to do it somehow and I am sure setting an onclick on the body will fire even if the mouseup is out of the screen. So there must be a way to do it. If I was working on Javascript I would easily have code it but I am looking for a GWT solution. Adam On 14 May, 21

Re: Hosted mode won't work since 2.0 upgrade

2009-12-16 Thread Adam S
Copying another version of eclipse worked for me. After that i retrieved code from my SVN server and everything is as it was before. BR -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: Hosted mode won't work since 2.0 upgrade

2009-12-15 Thread Adam S
Same outcome here. I tried to swtich to GWT2.0, but my app using smarGwt compononets didn't exacly looked as i inteded so i tried to switch back to 1.7.1 Now my hosted mode tries to connect to some weird site and keeps saying : Unknown module requested 'missingplugin' On 14 Gru, 22:17, Mike

Re: OOPHM not connecting to Code Server

2009-12-04 Thread Adam Hawthorne
for Linux OOPHM plugin? How different is it from the windows plugin? Adam On Fri, Dec 4, 2009 at 17:01, Chris Ramsdale cramsd...@google.com wrote: You may have already done this, but you'll want to make sure that you update your hosted.html that you are serving up as well. In working through

Re: Garmin Communicator API

2009-11-22 Thread Adam T
$wnd.Garmin.DeviceDisplay(garminDisplay, { //Adam On 21 Nov, 20:25, Stephen Walsh stephenwalsh@gmail.com wrote: I am trying to use the above api to implement some JSNI code in my onModuleLoad method.  I am having the darnedest time trying to get it to recognize that I have the extra

Re: Connecting Widgets

2009-11-02 Thread Adam T
The following library might work for you, or give you hints on what you need to do: http://code.google.com/p/gwt-diagrams/ //Adam On 2 Nov, 00:23, sony sonyp...@gmail.com wrote: My project is about drawing ER Diagrams, for this I am using GWT. For now i have most of the frontend working. Now

Re: How do I boostrap my Entry Point class with the User service?

2009-10-25 Thread Adam T
This tutorial might help, particularly section 3 that covers using AppEngine User service in GWT : http://code.google.com/webtoolkit/tutorials/1.6/appengine.html //Adam On 24 Okt, 19:43, nacho vela.igna...@gmail.com wrote: Hi, im developing an aplication in gwt and i have an entry point

Re: change css rules dynamically

2009-10-18 Thread Adam T
) first.getElement().getStyle().setProperty(display, hidden); d) first.addStyleName(hidden-style); (assuming you have hidden- style defined in your style sheet and that sets the display property to hidden) //Adam On 18 Okt, 09:07, bhomass bhom...@gmail.com wrote: I found there is a way to change css rules

Re: change css rules dynamically

2009-10-18 Thread Adam T
...if you mean actually changing a value in an already defined style sheet, then you need to use JSNI (or rethink your application to change the style applied to elements rather than the style definition). //A On 18 Okt, 15:52, Adam T adam.t...@gmail.com wrote: You can do it in at least 4

Re: Gadget more ?

2009-09-29 Thread Adam T
can't you do it using the normal GWT menu and menuitem widgets? //A On 29 Sep, 13:50, Ice13ill andrei.fifi...@gmail.com wrote: Does someone knows a library with gadget/widget like the more item from the google main menu ? (the menu seen on the top of the page, with links to other apps)

Re: Problem with Getting Scripts Tag Working

2009-09-26 Thread Adam T
You might want to follow the getting started with Google maps api and GWT guide (http://code.google.com/docreader/#p=gwt-google-apiss=gwt- google-apist=MapsGettingStarted)? //A On 25 Sep, 22:33, thc tclotwor...@integratedsecure.com wrote: Hi, I am creating a very simple GWT that uses Google

Re: Compilation Error

2009-09-25 Thread Adam T
u can not use these classes in GWT - client side, read the doc for the allowed class, more specifically, this is what you are allowed to use on GWT client side: http://code.google.com/webtoolkit/doc/1.6/RefJreEmulation.html //A --~--~-~--~~~---~--~~ You

Re: Problem compiling deploying GWT-Fx

2009-09-19 Thread Adam T
your code has compiled, and if so, then using an inspection tool on your browser to see what is happening (e.g. Firebug or similar). Hope that helps, Adam On 12 Sep, 02:15, Carlos Niebla cnie...@gmail.com wrote: Hi, I've been working with some examples ofGWT-Fx, they run fine in hosted mode

Re: Need help with GWT FX

2009-09-08 Thread Adam T
a Move effect to an element then it gets assigned position:absolute property, so if you apply a move to all your boxes, you may not see the others alter position on screen if you move just one of them. Hope that helps in some way. //Adam On 7 Sep, 12:26, Rodders david.andrew.chap

Re: How can I get GWT 2.0

2009-09-07 Thread Adam
There is no official GWT 2.0 right now. But you can build what's in the trunk though. To do that, you need to subversion and ant. Make a work directory mkdir google-web-toolkit cd google-web-toolkit Checkout the GWT tools: svn checkout

GWT.create() doesn't work outside onModuleLoad()

2009-08-18 Thread Adam Pratt
(when in hosted mode): java.lang.ClassCastException: [packagename].shared.MyService_Proxy cannot be cast to [packagename].aspect.shared.MyService Anyone know what might be causing this error? Thanks, Adam --~--~-~--~~~---~--~~ You received this message because you

Re: GWT.create() doesn't work outside onModuleLoad()

2009-08-18 Thread Adam Pratt
...@zenoconsulting.biz wrote: Hi Brian, I think you want: MyServiceAsync service = GWT.create(MyService.class); On Aug 18, 3:00 pm, Adam Pratt mehmeh...@mailinator.com wrote: Hey All, I'm trying to get one very simple line of code to work: MyService service = GWT.create(MyService.class

Re: event when item is visible, and getOffsetHeight isn't 0

2009-07-30 Thread Adam T
try the onLoad() method: /** * This method is called immediately after a widget becomes attached to the * browser's document. */ protected void onLoad() { } //Adam On 30 Juli, 22:10, bradr brad.rydzew...@gmail.com wrote: I'm working on a widget and need to do calculations

Re: Async socket

2009-07-30 Thread Adam T
The so-called Comet technique is perhaps what you are looking for: http://ajaxian.com/archives/comet-a-new-approach-to-ajax-applications //Adam On 31 Juli, 02:03, Blessed Geek blessedg...@gmail.com wrote: In Flash, I could create an async socket. Which is very useful because it allows server

Re: conversion to JavaScriptObject fails with cross site communication

2009-07-29 Thread Adam T
final native int RAM() will possibly fail later in your code - you could create a new method in the BasicComputerInfo class that does the conversion for you, e.g. public int getRAM(){Integer.parseInt(RAM ());} and change RAM() to return the String in the JSON. Hope some of that helps! //Adam On 28

Re: Indexed Panel

2009-07-27 Thread Adam T
the index of a particular widget. There's always the JavaDoc if you need information, i.e. http://google-web-toolkit.googlecode.com/svn/javadoc/1.6/com/google/gwt/user/client/ui/IndexedPanel.html . Hope that helps. //Adam On 27 Juli, 17:36, Rahul coolrahul18...@gmail.com wrote: Hi, I could

Re: Reading styles directly from the stylesheet?

2009-07-24 Thread Adam T
than just in the end - i.e. start{width: 100px; height: 200px;} and end{width: 400px; height: 400px;} rather than start{width: 100px} and end{width: 400px; height: 400px;} and assume I could work out the start height. Good Luck //Adam * the current downloadable zip file essentially requires you

Re: Suggestion: Toggle style name

2009-07-23 Thread Adam T
the style for a particular name?) //Adam On 22 Juli, 19:00, Célio ccidral@gmail.com wrote: Eventually I find my self doing this:         toggleStyleName = !toggleStyleName;         if (toggleStyleName)         {             widget.addStyleName(SomeStyleName);         }         else

Re: Selection of Widgets

2009-07-23 Thread Adam T
how to use PreviewNativeEvent. (alternatively, maybe the gwt-diagrams library gives the functionality similar to what you want? (http://kolos.math.uni.lodz.pl/~balon/gwt- diagrams-demo/pl.balon.gwt.diagramsexample.GwtDiagramsExample/ GwtDiagramsExample.html)) //Adam On 23 Juli, 10:06, Ewald

Re: Problem while loading stylesheet dynamically

2009-07-23 Thread Adam T
Hi Rick, The last line in your native method should read: $doc.getElementsByTagName(head)[0].appendChild(fileref); As GWT uses $doc to refer to the pages document. See: http://code.google.com/webtoolkit/doc/1.6/DevGuideCodingBasics.html#DevGuideJavaScriptNativeInterface //Adam On 23 Juli

Re: Selection of Widgets

2009-07-22 Thread Adam T
- I can't remember without building a full example myself, but you get the point, hopefully). Regards, Adam On 22 Juli, 22:37, Ewald Pankratz ewald.pankr...@gmail.com wrote: Hi When I create a widget e.g. a HTML widget and go with the mouse over the widget and press the left mouse button

Re: JSNI issues

2009-07-21 Thread Adam T
some hints. //Adam On 21 Juli, 16:23, wsaleem wsal...@gmail.com wrote: I checked the link. Overlay types could surely make my life easier in terms of wrapping Protovis but as long as I cannot access $wnd.pv through JSNI, I cannot use them. On Jul 20, 11:28 pm, wsaleem wsal...@gmail.com wrote

Re: JSNI issues

2009-07-20 Thread Adam T
inherits name='com.google.gwt.user.User' / script type=text/javascript src=protovis.js /module With this sett up, the GWT boostrap code should ensure the library JavaScript is loaded before your GWT code executes. //Adam On 19 Juli, 18:19, wsaleem wsal...@gmail.com wrote: I am not a JS developer

Re: why GWT hosted mode showed a blank page?

2009-07-20 Thread Adam S
in private email. On Jul 20, 5:36 pm, Rajeev Dayal rda...@google.com wrote: What version of IE are you using? Are you still running into the problem? Also, try the suggestion mentioned above - clear IE's cache. On Fri, Jul 17, 2009 at 7:42 PM, Adam S servic.a...@gmail.com wrote: I have similar

Re: JSNI issues

2009-07-20 Thread Adam T
now) Good luck, //Adam On 20 Juli, 17:41, wsaleem wsal...@gmail.com wrote: Adam, I added     script src=protovis.js / to the .gwt.xml. No change! On Jul 20, 4:24 pm, Adam T adam.t...@gmail.com wrote: Hi, It might be the case that in both cases your GWT code is loaded and executing

Re: why GWT hosted mode showed a blank page?

2009-07-17 Thread Adam S
I have similar problem. I use gwt with with smartGwt, eclipse (google plugin) and embeded server for hosted mode under windows. App isn't working under hosted mode but compiled in IE, Chrome and FF browers is working fine. That's really strange for me, because it worked fine, day earlier.

Re: Fade animation with IE opacity doesn't work....

2009-07-15 Thread Adam T
: http://acidmartin.wordpress.com/2008/11/28/setting-opacity-and-other-filters-in-internet-explorer-8/) //Adam On 16 Juli, 00:42, Ed post2edb...@hotmail.com wrote: He, The following occurred against 1.6.4. In hosted mode (IE 7 I quess as I have IE7 installed) I found out that when I set

Re: Does GWT 1.7 support Class.getSimpleName()?

2009-07-15 Thread Adam T
GWT supports the following: http://code.google.com/webtoolkit/doc/1.6/RefJreEmulation.html //Adam On 15 Juli, 19:00, Pandaman p4nda...@gmail.com wrote: Does GWT 1.7 support Class.getSimpleName()? --~--~-~--~~~---~--~~ You received this message because you

Re: GWT: Edit CSS Attributes

2009-07-07 Thread Adam T
Something like the following should work: Image img = new Image(SomeImage.png); img.getElement().setPropertyString(left, 100px); //Adam On 7 Juli, 14:12, stephan17 stephanbe...@gmx.at wrote: Hi, In GWT i have an image and I want to edit a css

Re: How to know when a Widget is fully loaded....

2009-06-28 Thread Adam T
Image to 100% and size of SimplePanel to what you require through CSS c) do what you're doing with a timer until approach in (a) is fixed in gwt I wonder though if you can't achieve what you want just by using percentages in Style Sheet Hope that helps //Adam On 27 Juni, 16:42, Sean slough

Re: UiBinder in trunk or incubator?

2009-06-05 Thread Adam T
Hi Ricardo - see this: http://groups.google.se/group/Google-Web-Toolkit-Contributors/browse_thread/thread/4539b203c2aba4ad?hl=sv# //Adam On 5 Juni, 15:07, rocha.po...@gmail.com rocha.po...@gmail.com wrote: Hi all. I'm trying to use the UiBinder, i've searched this and the contrib group

Re: $doc.selection is undefined in GWT

2009-06-04 Thread Adam T
search for cross-browser document.selection.createRange() to see how you would do it for Opera, Safari, Chrom, Firefox etc. //Adam On 4 Juni, 02:05, bhomass bhom...@gmail.com wrote: I have a native method which uses $doc.selection.createRange() I am not sure why the $ before doc. I simply copied

  1   2   >