Anyone, this is the correct spot for this post.  Any pointers please.

e

On Thu, Mar 31, 2011 at 7:46 PM, Ed <[email protected]> wrote:
> Oops, I posted this to wrong place.
>
> Sorry about the noise.
>
> On Mar 31, 6:51 pm, Ed <[email protected]> wrote:
>> HI
>>
>> I am a newbie to JSNI.  Any help on how to implement this would be 
>> appreciated.
>>
>> I am just trying to notify client of save operation in progress.
>>
>> All of the in put is coming from an
>>
>> The html containing the onClick is loaded in
>>
>> private static Frame via a url set.
>>
>> JAVA in CLIENT
>> ------------------------
>>
>> --SaveButton.java--
>>
>> package com.CO.client;
>>
>> import com.google.gwt.core.client.EntryPoint;
>> import com.google.gwt.user.client.Window;
>>
>> public class SaveButton implements EntryPoint {
>>
>>     public static void saveButtonAction()
>>         {
>>          Window.alert("saving");
>>         }
>>     public static native void exportStaticMethod() /*-{
>>     $wnd.saveButton =
>>     @com.CO.client.SaveButton::saveButtonAction();
>>     }-*/;
>>     @Override
>>     public void onModuleLoad() {
>>         // TODO Auto-generated method stub
>>         exportStaticMethod();
>>
>>     }
>>
>> HTML in IFRAME
>> --------------------------
>> --used for every save operation--
>> <input type= "submit" value="Save with on click" onclick="saveButton()">
>>
>> Ed Lang
>
> --
> You received this message because you are subscribed to the Google Groups 
> "Google Web Toolkit" group.
> To post to this group, send email to [email protected].
> To unsubscribe from this group, send email to 
> [email protected].
> For more options, visit this group at 
> http://groups.google.com/group/google-web-toolkit?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to