Getting User Credential from IE

2008-10-22 Thread Julian
I realized that when we use our corporate Seibel page using IE, it knows the Logon User Name. I like IE to pass GWT the User Name that is already authenticated into Windows. I'm new to front end programming, can someone give me some concept that I need to go and figure this out. TIA -Julian

GALGWT, Eclipse 3.5 / Galileo, and GWT 1.7 -- how to add this or any other GWT library to projects?

2009-08-17 Thread Julian
Hi all, firstly the GWT / AppEngine plugin for Eclipse is sensational. To be able to deploy to production so easily is amazing. However a basic question -- how do you add other GWT libraries? I wanted to extend the template given by making a geolocation API call in gwt-gears I'm struggling to

Deploy GWT 2.0 in a jetty

2010-04-13 Thread Julian!
Hi im trying to deploy my GWT app in a jetty servlet container, im developing with eclipse with the google plugin. and when i run with the plugin http://127.0.0.1:/index.html?gwt.codesvr=127.0.0.1:9997, works fine. but when I copy the war directory and configure to jetty server the application

Get JSON content from GWT

2010-04-19 Thread Julian!
Hi all !! im trying to get the content from a json service like yahoo, but I never get the result correctly: this is my code: RequestBuilder builder = new RequestBuilder(RequestBuilder.GET, http://api.search.yahoo.com/ImageSearchService/V1/imageSearch?

Re: Error when running ant hosted on OS X 10.6

2009-11-14 Thread julian
Can be that (10.6.1, safari 4) uses 64bit architecture instead 32? Have a look to: http://kb2.adobe.com/cps/509/cpsid_50983.html On Nov 13, 4:41 pm, Kyle Hayes kyle.ha...@disney.com wrote: I installed your new jar and I'm still getting the following error: == hosted:      [java]

Re: RC2 and Eclipse Plugin

2009-12-15 Thread julian
I also have no urls in the developer mode view. Running Eclipse 3.5, OS X Snow Leopard, gwt 2.0 using gwt-maven-plugin 1.2-SNAPSHOT But I can access the developer server by entering the url in the browser manually: http://localhost:/my.web.App/index.html?gwt.codesvr=localhost:9997 Interesting

CellTable: Unable to combine CSS-selectors

2011-02-24 Thread Julian
Hi there I'm trying to combine the cellTableFirstColumn and cellTableKeyboardSelectedRowCell selectors to set background-color of the first cell in the selected row to a lovely pink. I have the following in my *CellTablePatch.css* .cellTableFirstColumn .cellTableKeyboardSelectedRowCell {

Re: CellTable: Unable to combine CSS-selectors

2011-02-25 Thread Julian
Thank you John, Brian and zakness. All of you were spot on! I was confusing descendant selectors and multiple selectors. I guess the reason I was having such a hard time figuring out this one was because the parent TR had many of the same styles applied. This gave the illusion that the way I

CellTable: Prevent styling of selected rows

2011-02-25 Thread Julian
Hi awesome people I'm trying to control which of the columns in a CellTable will trigger a SelectionChangeEvent by implementing CellPreviewEvent.Handler. The problem is that even if I cancel the SelectionChangeEvent, the CSS-styles for *selected rows* are still applied (

Re: How to set background color for button?

2011-06-08 Thread Julian
Try using button.*setStyleName*(color-icon); instead. Alternatively use .color-icon { height: 16px; width: 23px; background-image: none *!important*; background-color: #77; } -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Create Canvas widget from CanvasElement

2011-08-11 Thread Julian
to do this? If not, what is the reasoning behind it (besides that it might not be supported)? I am using version 2.4.0.rc1. Thanks, Julian -- 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

Re: Create Canvas widget from CanvasElement

2011-08-12 Thread Julian
constructor protected CanvasElement() It means that you can derive your own class for CanvasElement. Adding it in a GWT container works for me. I agree with you : I don't understand why there is also a Canvas class, and why the constructor is private ? Canvas is a Widget

RequestFactory: Child proxy is null on client side

2011-09-11 Thread Julian
Hi there I'm having some difficulties using RequestFactory (and Objectify). I have two entities Item and Payload, and corresponding proxies ItemProxy and PayloadProxy (*#1*). If I call ItemRequestContext.saveAndReturn() on the clientside (*#3*) a simple println in my ItemDao shows the Payload

Re: RequestFactory: Child proxy is null on client side

2011-09-12 Thread Julian
Thank you Aidan! .with(video) solved the problem :) Somehow I thought it only applied to ValueProxies. -- 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: Request Factory Proxy Variable Null problem

2011-09-28 Thread Julian
Could this be related? https://groups.google.com/forum/#!searchin/google-web-toolkit/requestfactory$20null/google-web-toolkit/ocBf6sXrv-I/HNkuYb9CnfQJ -- 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: Request Factory Proxy Variable Null problem

2011-09-28 Thread Julian
*Your other properties are already filled because they are primitive types ( = no entity proxy). Only properties that are entity proxies or lists of entity proxies are null when you do not add these properties to the .with() method.* This also applies to instances of ValueProxy. -- You

Problem using classes from external modules

2011-10-07 Thread Julian
Hi I am trying to get my GWT application to work with an existing project consisting of several maven modules. Currently I'm struggling trying to use an enum from one of the existing maven modules, in my GWT client-side code. The way I'm tying to do it is by creating an extra GWT module where

Re: Help: GWT Celltable Record (Specific Record Mouseover) ToolTip !!!

2012-06-19 Thread Julian
Hi, i've had the same problem, many thanks to Jens and Rajeshwar for the solution! I've extended Column and TextColumn: public abstract class TooltipColumnT, C extends ColumnT, C{ private final CellC cell; public TooltipColumn(CellC cell) { super(cell);

Re: GALGWT, Eclipse 3.5 / Galileo, and GWT 1.7 -- how to add this or any other GWT library to projects?

2009-08-18 Thread Julian Harris
the noredist gears jar. Give it a try. On Aug 17, 7:03 pm, Julian julian.har...@gmail.com wrote: Hi all, firstly the GWT / AppEngine plugin for Eclipse is sensational. To be able to deploy to production so easily is amazing. However a basic question -- how do you add other GWT libraries

Re: Deferred binding for mobile browser support

2009-08-21 Thread Julian Harris
Thanks Sumit as always -- can I check why the fall-through class exists at all? It seems a little redundant for something to replace itself! :) I know that's what the docs say ... but why I wonder? On Aug 10, 11:53 pm, Sumit Chandel sumitchan...@google.com wrote: Hi Michael, If you could

requestFactory: NPE while traversing local read-only proxies

2011-03-03 Thread julian...@gmail.com
Hi, I've recently set up remote logging which now gives me more visibility on client-side bugs. One problem that I've discovered this way, but never ran into myself, are spurious errors like the ones attached below. As you can see, the stack trace isn't always identical but it usually looks

ProxyAutoBean server-side cache

2011-03-24 Thread julian...@gmail.com
Hi, it appears that for every EntityProxy instance that a client requests via RequestFactory, a ProxyAutoBean object is created on the server. Is this correct? If so, what is the lifecycle of the ProxyAutoBean, at what point does it get deleted? I can see (in jvisualvm) that it lives in a

Re: ProxyAutoBean server-side cache

2011-03-25 Thread Julian Scheid
On Sat, Mar 26, 2011 at 1:05 AM, Thomas Broyer t.bro...@gmail.com wrote: Looking at the code, ProxyAutoBean's createShim creates a reference cycle (the shim references the proxyAutoBean, which keeps a reference on the shim). Because the value in the WeakMapping is kept with a strong reference,

Re: RequestFactory causing OutOfMemoryError

2011-06-14 Thread Julian Scheid
On Tue, Jun 14, 2011 at 7:18 PM, Filip Krygowski filip.krygow...@gmail.com wrote: I took a long and careful look at the heap and after some analysis I noticed that the Longs I’ve been sending don’t get garbage-collected (also true for other types stored in lists, which I checked later). The

Re: Get JSON content from GWT

2010-04-20 Thread Julian David Roldan
2010/4/20 Thomas Broyer t.bro...@gmail.com On Apr 20, 1:26 am, Chris Conroy con...@google.com wrote: On Mon, Apr 19, 2010 at 4:01 PM, Julian! julia...@gmail.com wrote: http://api.search.yahoo.com/ImageSearchService/V1/imageSearch? appid=YahooDemoquery=potatoresults=2output=json