best way to accept url parameters

2011-06-13 Thread pieceovcake
the website www.395taxi.com is the base url. Developers can submit taxi orders and get paid for referral by simply adding their paypal email address to the end of the base url example www.395taxi.com/?referral=i...@opentaxis.com at the end of the month the referral gets paid based on the number

add widget onto map

2011-01-14 Thread pieceovcake
Does anyone have an example of how to overlay a widget such as a text box on top of a google map? -- 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: Right aligning items of a MenuBar.

2011-01-14 Thread pieceovcake
i have the same issue, not able to alight right. -- 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

NoClassDefFoundError:

2011-01-08 Thread pieceovcake
i get the following app engine error NoClassDefFoundError: com/google/gwt/maps/client/geocode/DirectionsCallback when executing the following code on the server String fromTo = from + to; Directions.load(fromTo, new DirectionsCallback() { public void

Re: NoClassDefFoundError:

2011-01-08 Thread pieceovcake
could i be getting this error because the code is executing on the server rather then the client? -- 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

Re: gwt rpc

2011-01-05 Thread pieceovcake
what i'm getting at is how do i make my gwt-rpc function call available to the rest of the world? So that external users can execute Get() on the RemoteServiceServlet -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group,

locate city

2011-01-04 Thread pieceovcake
is there any way to get the location of a user using gwt on the client side? -- 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

locate city based on ip address

2011-01-04 Thread pieceovcake
is there any way to get the location of a user using gwt on the client side based on their ip address? -- 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

Re: locate city based on ip address

2011-01-04 Thread pieceovcake
i was thinking *ClientLocationhttp://gwt-google-apis.googlecode.com/svn/javadoc/ajaxloader/1.1/com/google/gwt/ajaxloader/client/ClientLocation.html *from the http://gwt-google-apis.googlecode.com/svn/javadoc/ajaxloader/1.1/index.html anyone have some sample code that uses this library? --

gwt rpc

2011-01-04 Thread pieceovcake
can gwt-rpc be implemented by extending HttpServlet or will it only work by extending RemoteServiceServlet ? -- 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

not get persisted to the data store

2010-12-24 Thread pieceovcake
Can anyone see why when i set driverstatus.activeStatus = false; this does not get persisted to the data store? Query stopalertquery = pm.newQuery(Driver.class); stopalertquery.setFilter(mobileCarrierEmail == mobileCarrierEmailParam); stopalertquery.declareParameters(String

Re: google maps api

2010-12-22 Thread pieceovcake
Yes i've seen these but all the example javascript v3. I want to use the java maps api library from within a gwt application. Thanks for you help. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

textbox water mark

2010-12-20 Thread pieceovcake
Has anyone added a watermark to a textbox? On first view the textbox shows a message e.g. letting the user know what to enter into the textbox. Once the placed the cursor inside the text box the water mark vanishes. -- You received this message because you are subscribed to the Google

Re: textbox water mark

2010-12-20 Thread pieceovcake
html5 solution worked like a charm, thanks -- 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 maps api

2010-12-20 Thread pieceovcake
I'm using the google maps api to plot a point on a map. Is there anyway to display adsense ads based the location? -- 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.

execute same code for different widget event handle

2010-12-16 Thread pieceovcake
this works great @UiHandler(streetName) void handleStreetNameKeyPress(KeyPressEvent e) { // code } but i want to execute the same handleStreetNameKeyPress triggered from another field on the page something like this @UiHandler(streetNumber) @UiHandler(streetName) void

extract substring from within 2 tokens

2010-12-14 Thread pieceovcake
anyone know the equivalent of String description = ID:89790797:ID; String foundid = org.apache.commons.lang.StringUtils.substringBetween(description, ID:, :ID); in the java.util.regex library? I need to extract the string between the ID tags Thanks -- You received this

multiple emails being sent

2010-12-09 Thread pieceovcake
When sending 1 email using GAE, it sends in error 5 additional emails. Anyone else experiencing this problem? -- 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

debug sending email

2010-11-30 Thread pieceOvCake
Hi, is it possible to send emails by running application in development mode. Every time a change some code in my mailing code section, I need to upload to HOST and run from there. This is a real pain, or I am I doing something wrong? Thanks -- You received this message because you are

addClickHandler

2010-11-26 Thread pieceOvCake
when i use this code everything works fine. SUCCESS public class PickupLocation extends Composite{ private static PickupLocationUiBinder uiBinder = GWT .create(PickupLocationUiBinder.class); interface