Re: I need help calling GWT code from Javascript passing in generic arguments and/or callbacks -- URGENT

2014-09-25 Thread Samuel Schmid
Thank you! Helped me a lot! On Tuesday, March 6, 2012 5:53:25 AM UTC+1, babakm wrote: I built an API in GWT for accessing a series of complex services. I wanted to do tons of client side processing and I chose GWT (been doing GWT for years now). However, my users will be using Javascript.

I need help calling GWT code from Javascript passing in generic arguments and/or callbacks -- URGENT

2012-03-05 Thread babakm
I built an API in GWT for accessing a series of complex services. I wanted to do tons of client side processing and I chose GWT (been doing GWT for years now). However, my users will be using Javascript. I can easily call GWT from Javascript. No problem. I set up a routine I run as soon as my

Re: I need help calling GWT code from Javascript passing in generic arguments and/or callbacks -- URGENT

2012-03-05 Thread babakm
I resolved it myself. Two different ways. This is way too cool public static int computeLoanInterest(final int amt, final float rate, final int term) { return (int) (amt * rate * term); } public static void getConnection2(final JavaScriptObject jso) {