There are a number of ways you can address this.

The simplest way is to put your button on your web page and keep it
completely separate from GWT.

Another way is to set up a traditional form (FormPanel, I believe)
with the action set to your search url.  This happens asynchronously,
but is probably the most traditional, as it uses a form.

Another option is to make the button trigger a non-GWT asynch call and
then trap the result.  You can do this with the request builder.

Finally, you can create a GWT rpc service that calls your lucene
search and then funnels the results back to the client.

Good luck!

On Jan 28, 10:03 am, Sabbia <[email protected]> wrote:
> Hi there!
>
> I'm starting with GWT, and although it's not been too much difficult
> to do my first things, i've reached to something i can't solve.
>
> What i'm trying to do is something as simple as calling another
> programm by clicking a button. Deeply, in Eclipse, I have another
> project, based on Lucene, that indexes and searches a word into the
> files of a directory, and I'd want to call the index and search
> functions by clicking a button of my GWT project. But I don't know
> where can I put the files from my other project and how to connect the
> click event to make it call the another files.
>
> Thank u, everybody, in advance, i'll keep on trying
>
> cheers!

-- 
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