Re: FlowPanel

2009-09-09 Thread Rami Alkhalyleh
panel in a horizontal panel or decrease vertical panel width. -- Best Regards Rami --~--~-~--~~~---~--~~ 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

Re: FlowPanel

2009-09-09 Thread Rami Alkhalyleh
, when I'd like to change the size of a panel in both horizontal and vertical direction. Hope this helps! 2009/9/9 Rami Alkhalyleh rkhaly...@gmail.com Hi Actually I need to use the FlowPanel, I need to list my widgets in a flow way horizontally, the vertical panels that I'm trying to add

Re: FlowPanel

2009-09-09 Thread Rami Alkhalyleh
. Ian http://examples.roughian.com 2009/9/9 Rami Alkhalyleh rkhaly...@gmail.com Hi, thanks Tamas for your reply. I need to use the flow panel to control over the flow layout, which means, If I have many panels in the flow panel, and I removed one of them in the middle, the flow panel

FlowPanel

2009-09-08 Thread rami
Hi all, I'm trying to add a verticalPanels to the flowPanel, but the flowpanel listed them vertically only, How I can list them horizontally? thanks in advance --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

Re: Running the GWT project on external server(tomcat) in the eclipse

2009-08-24 Thread rami
(you must have GWT plugins), third, write you code, ok, it's time clean/build your project, ok, run as on server. hope that helps you !! 2009/8/23 rami rkhaly...@gmail.com Hi all, I'm trying to use an external server(tomcat 6) to run the GWT project in the eclipse, instead

Running the GWT project on external server(tomcat) in the eclipse

2009-08-23 Thread rami
Hi all, I'm trying to use an external server(tomcat 6) to run the GWT project in the eclipse, instead of the GWT build-in server, I did a search in the GWT documentation, I did not find any thing to demonstrate this, Is there any way to do this? thanks

Re: MenuBar not opening

2008-10-11 Thread RamI
Well I tried in a new application and it works. So I worked on my appli and saw that I changed stringAttribute key=org.eclipse.jdt.launching.PROGRAM_ARGUMENTS value=-out www com.op.Portail/Portail.html/ to stringAttribute key=org.eclipse.jdt.launching.PROGRAM_ARGUMENTS value=-out www

Re: MenuBar not opening

2008-10-11 Thread RamI
, and now that the authentication panel really does not exist anymore, it works ! RamI --~--~-~--~~~---~--~~ 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

Re: Troubles linking GWT and php server using JSon

2008-10-03 Thread RamI
because it is a tomcat. But since I didn't precise the port in the url, why is this still not interpreted when compiled? Thanks all RamI --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group

Re: Troubles linking GWT and php server using JSon

2008-10-03 Thread RamI
/Portail.html -noserver - port 80/ and it also works ^^ and this solution also allows me to keep the relative path for my url Thanks again RamI --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post

Re: Troubles linking GWT and php server using JSon

2008-10-02 Thread RamI
){ String url = authenticate.php?name=\'RamI\'pwd=\'+pass+\'; System.out.println(url); // to be sure that the url is correct RequestBuilder requestBuilder = new RequestBuilder( RequestBuilder.GET, url ); try

Re: Troubles linking GWT and php server using JSon

2008-10-02 Thread RamI
Pavel, I tried String url = http://localhost:/com.op.Portail/authenticate.php? name=\'RamI\'pwd=\'+pass+\'; but the result is the same :s RamI --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit

Troubles linking GWT and php server using JSon

2008-10-01 Thread RamI
Hi all, I am trying to use JSON to get data from a php server. Here is my code : String url = authenticate.php?name=\'+name\'pwd=\'+pass+\'; System.out.println(url); RequestBuilder requestBuilder = new RequestBuilder(