tip: GWT integration with intercom.io

2013-03-15 Thread Addy
Hi All, I recently integrated my GWT app with intercom.io and I thought I would share the details with the community. 1. Add the following to your root HTML file script type=text/javascript src= https://api.intercom.io/api/js/library.js;/script 2. create a function and call it each time the

Re: Combining Google Checkout

2010-02-03 Thread Addy
application. Which means when the checkout is completed, you can show a Thank You page and link back to your GWT application. Addy checkAppointments.com On Feb 2, 8:56 am, maks makspaniza...@gmail.com wrote: Is there any examples on how to include Google Checkout in GWT? -- You received

Re: GWT 2.0 - com.google.gwt.user.client.rpc.IsSerializable is mandatory again?

2009-12-14 Thread Addy
for this release to be stable to switch to 2.0 for production use. Addy http://checkAppointments.com On Dec 13, 4:11 pm, Sorinel C scristescu...@hotmail.com wrote: When a new version comes these are the standard steps to do: 1 - put the jars 2 - perform a full rebuild of the application 3

Login Tutorial

2009-02-04 Thread Addy
through this forum or as comments. Thanks, Addy --~--~-~--~~~---~--~~ 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

Re: Hibernate + GWT integration options

2009-02-02 Thread Addy
you need to convert it back, I usually write a dehibernate method in my dao where I create a new set and use an iterator to iterate through all values in persistent set and put them in a plain set. Let me know if this works. It is a lot faster than using other tools Addy http

Re: Error Message

2009-01-28 Thread Addy
Sounds like you are trying to use dockPanel without defining the direction. You need to use command like dockPanel.add(widget, DockPanel.north); On Jan 27, 5:09 pm, fatjack1...@googlemail.com fatjack1...@googlemail.com wrote: Does anyone know which method/panel I should be using? On Jan 27,

Re: How to change the name of the host html page in project

2009-01-04 Thread Addy
I use a simple ant task to rename the file during the build process. You dont have to do anything else. move file=${webapp.dir}/MainApp.html tofile=${webapp.dir}/ index.html/ You can see it here:- http://checkappointments.com/checkAppointments/index.html regards, Addy http