Re: help integrating GWT project to an existing Web Project (on Tomcat) within Eclipse

2010-03-25 Thread spacejunkie
a newbie to GWT and have some integrating a GWT project to an existing web project running on Tomcat within Eclipse. It will be great if any one of you can help out. Heres the scenario. 1) I have a separate GWT project I created using GWT plugin for Eclipse. Lets call it TestUI 2) I

import java.io.File help

2010-03-25 Thread Chris
can gwt use this java class? if not, are there any ways around that if I want to create a list of all the files in a particular directory? thanks! -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: import java.io.File help

2010-03-25 Thread Lothar Kimmeringer
Chris schrieb: can gwt use this java class? On the client side? No. if not, are there any ways around that if I want to create a list of all the files in a particular directory? Create a signed Java applet that accesses the directory and pass that information to your application. Regards,

help integrating GWT project to an existing Web Project (on Tomcat) within Eclipse

2010-03-24 Thread aish sundar
I am a newbie to GWT and have some integrating a GWT project to an existing web project running on Tomcat within Eclipse. It will be great if any one of you can help out. Heres the scenario. 1) I have a separate GWT project I created using GWT plugin for Eclipse. Lets call it TestUI 2) I already

Re: help integrating GWT project to an existing Web Project (on Tomcat) within Eclipse

2010-03-24 Thread aish sundar
if any one of you can help out. Heres the scenario. 1) I have a separate GWT project I created using GWT plugin for Eclipse. Lets call it TestUI 2) I already have an existing web project within eclipse, called TestWeb, which runs on Tomcat6.0 3) Now I am somehow looking to integrate

Referencing DTO class help needed. Weird Serialization Errors

2010-03-23 Thread Mykhaylo Lytvynuk
My project contains 2 source folder, one is generic J2EE application another is smartCleintGWT, I want to use some already existing DTO classes from first source folder (src) My GWT are in src_console. I want to use DMXLicense class for client and server. This class should come over

Re: newbie help

2010-03-15 Thread Ashar Lohmar
also if you only seek the a/a functionality you should look at the Anchor object On Mar 14, 7:33 pm, eggsy84 jimbob...@hotmail.com wrote: Rjcarr is right in that you probably don't need a specific hyperlink object unless you need history support. In terms of events and wanting something to

Re: newbie help

2010-03-14 Thread eggsy84
Rjcarr is right in that you probably don't need a specific hyperlink object unless you need history support. In terms of events and wanting something to happen when your element has clicked GWT uses the notion of ClickHandlers: API:

help with clickhandler

2010-03-14 Thread JDog
Hi, I have a button with a ClickHandler which onClick will create an HTML element that is placed on a panel. The HTML element will have a ClickHandler as well which for now just does an alert(). I cant get this alert to work though. Below is the code. The only reason I can think of that it

Re: newbie help

2010-03-13 Thread rjcarr
Hi Robert- Creating a hyperlink probably isn't the first thing you want to do. You'll likely want to play around with panels and labels and images and then start adding click handlers to those things. A hyperlink is very similar to a label, but it also carries history information. That's almost

newbie help

2010-03-11 Thread _Robert_
Hi! I'm new to GWT but would like to get started with a simple application. I just can't figure out how hyperlinks work in GWT. public void onModuleLoad() { Hyperlink robert = new Hyperlink(Robert, robert); RootPanel.get(robert).add(robert); I guess I should

Re: help required on MenuBar

2010-03-07 Thread zbr
thanks mibtar for your post, I've already tried the 'crude' way. I thought we can add images to the menuBar in a more elegant manner, using MenuBar(boolean vertical, MenuBar.Resources resources). It didn't work for me. thanks any way. zbr -- You received this message because you are

Help! Using external Javascript file

2010-03-06 Thread Amey Sakhadeo
get an error saying: com.google.gwt.core.client.JavaScriptException: (ReferenceError): foo is not defined Where am I going wrong? Please help me out! :( -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email

help required on MenuBar

2010-03-06 Thread zbr
hi, I am trying to use a MenuBar with images on the left for the different menu Items. I looked at the doc concerning the use of ClientBundle etc, with no success at all! any help ? thanks -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: help required on MenuBar

2010-03-06 Thread mibtar
create an interface: public interface Resource extends ClientBundle{ @Source(theimage.png) ImageResource theimage(); } place the theimage.png file in the same package as the interface. to use the interface: Resource resource = GWT.create(Resource.class); //make the file menu MenuBar

help in use rtl style in gwt

2010-03-02 Thread MeisaM
Hi, I want to use default GWT right to left cascading style sheets (standard_rtl.css) in my project. Please tell me how can I do that? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Need help with GWT Panels and Drag Drop

2010-03-02 Thread Tan Jia Bao
As I'm currently making a drag and drop commerce site for a schoool project, I'm using 2.0GWT-DND I'm almost completing but am now facing a very big problem. As I want my cart and items to appear together, I'm facing a layout problem that resorted me to doing this. -- means added into that

Need help with JsonpRequestBuilder

2010-03-02 Thread omsrobert
I need some help getting a simple JSONP example to work. I just want to call a URL and parse the map that is returned. Need to (1) figure out why my code below doesn't work and (2) how to parse the map e.g. I have a server (192.168.1.99) that has a script: http://192.168.1.99/some_path

Re: Need help with JsonpRequestBuilder

2010-03-02 Thread omsrobert
I also tried jsonp.setCallbackParam(jsoncallback); but it's not working. Is there any documentation other than the JavaDoc that shows how to use this? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: Need help with JsonpRequestBuilder

2010-03-02 Thread omsrobert
I got it to work. I had to set the callback param and use requestObject() with a type of JavaScriptObject instead of String. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

UiBinder need help

2010-02-25 Thread Raghunath
Hi Novice at UiBinder. I just want to have one UiBinder of html type ui and some gwt actions onclick action. is it possble to bind together. thanks -raghu -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send

help Regarding beginner in GWT

2010-02-24 Thread molleman
Hello guys, So i am having trouble, i am a student doing a project using GWT. I want to be able to have a login/logout website but my trouble is i do not know where to start. There are no tutorials out there to help. I have searched the web. My project will look like the mail sample application

Re: Help with GWT FlowPanel and other Panel Styles!

2010-02-23 Thread RPB
and placing it into the mainPanel to display on the webpage. Thing is, the FlowPanel doesn't display like a FlowPanel, but rather like a VerticalPanel, I tried changing it to horizontalPanel and it works, everything else works except for the FlowPanel. Can anyone help

Help on SuggestBox

2010-02-22 Thread Sudeep S
Hi All, I have a use case wherein there are 2 suggestboxes and the requirement is such that the user can either select one of the suggestions or can even input his own. When a suggestion is selected from box1, box2 is populated. Now if the user types his own then its called as non standard

Re: Help with GWT FlowPanel and other Panel Styles!

2010-02-22 Thread Tan Jia Bao
it to horizontalPanel and it works, everything else works except for the FlowPanel. Can anyone help on what I'm doing wrong? Thanks! -- 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

Re: Help with GWT FlowPanel and other Panel Styles!

2010-02-20 Thread RPB
on the webpage. Thing is, the FlowPanel doesn't display like a FlowPanel, but rather like a VerticalPanel, I tried changing it to horizontalPanel and it works, everything else works except for the FlowPanel. Can anyone help on what I'm doing wrong? Thanks! -- You received

Re: Help Needed : GWT Developer Plugin is not working with Mozilla Firefox

2010-02-19 Thread Tapas Adhikary
the link again to the clipboard and pasted on the browser. Everything worked well. Now I am able to hit the debug point and my pages are also getting refreshed on change. Thanks for the help On Fri, Feb 19, 2010 at 4:10 AM, Lukas Laag laa...@gmail.com wrote: You might want to read this: https

Re: Help with GWT FlowPanel and other Panel Styles!

2010-02-19 Thread RPB
, everything else works except for the FlowPanel. Can anyone help on what I'm doing wrong? Thanks! -- 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-tool...@googlegroups.com. To unsubscribe from

Re: Help with GWT FlowPanel and other Panel Styles!

2010-02-19 Thread Tan Jia Bao
is, the FlowPanel doesn't display like a FlowPanel, but rather like a VerticalPanel, I tried changing it to horizontalPanel and it works, everything else works except for the FlowPanel. Can anyone help on what I'm doing wrong? Thanks! -- You received this message because you are subscribed

upgrade gwt 1.6 help!!

2010-02-18 Thread asle
Hello: I am not resolved my problem with to upgrade gwt and i very very stressed because i have be ready for March 5. I have a project with gwt 1.5 and i used eclipse with cypal and for deploy I used designer. I used file.properties too, because I have configured the access to the database. Now

Re: Help Needed : GWT Developer Plugin is not working with Mozilla Firefox

2010-02-18 Thread Tapas Adhikary
Any update on this ? One more info , My project was created using GWT 1.5 application creator and recently upgraded to the GWT 2.0.2 jars. Please help. Thanks, -Tapas On Wed, Feb 17, 2010 at 6:28 PM, Tapas Adhikary tapas4...@gmail.com wrote: Greetings, I am using GWT 2.0.2 for my application

Re: upgrade gwt 1.5 to 1.6 help!!

2010-02-18 Thread asle
am not understand how i do, because i do not know where  directory is the main class for swich. I need you help for indications to change the main class because i need folowing the steps for upgrating my project: In order to eliminate this warning, change your main class from

Re: Help Needed : GWT Developer Plugin is not working with Mozilla Firefox

2010-02-18 Thread Lukas Laag
creator and recently upgraded to the GWT 2.0.2 jars. Please help. Thanks, -Tapas On Wed, Feb 17, 2010 at 6:28 PM, Tapas Adhikary tapas4...@gmail.com wrote: Greetings, I am using GWT 2.0.2 for my application. I have created my project using webAppCreator. I am not using the Eclipse plug

Help with GWT FlowPanel and other Panel Styles!

2010-02-18 Thread Tan Jia Bao
help on what I'm doing wrong? Thanks! -- 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-tool...@googlegroups.com. To unsubscribe from this group, send email to google-web-toolkit+unsubscr

Help Needed : GWT Developer Plugin is not working with Mozilla Firefox

2010-02-17 Thread Tapas Adhikary
Greetings, I am using GWT 2.0.2 for my application. I have created my project using webAppCreator. I am not using the Eclipse plug-in for GWT. I am able to launch my application successfully in development mode from an external browser but not able to debug the GWT code in development mode. Not

Re: RPC with ArrayList, another hapless Ray Ryan groupie reaches out for help

2010-02-13 Thread Michael Dausmann
Ok, solved my immediate problem, the ContactDetailId needs to have a no argument constructor also. public class ContactDetailId implements IsSerializable{ private String id; public ContactDetailId(){ } public ContactDetailId(String id){ this.id =

Re: Need help with Table!!!!

2010-02-12 Thread muhannad nasser
the mouse moves over it... and that is it u have what u r looking for. if u need any help please let me know On Thu, Feb 11, 2010 at 7:32 PM, SergeZ comp1...@gmail.com wrote: Please, help I searching for a very simple solution for how to build a Table!!! I need a simple table

RPC with ArrayList, another hapless Ray Ryan groupie reaches out for help

2010-02-12 Thread Michael Dausmann
Hi Trying to build out the Ray Ryan best practices sample in GWT 2.0 , having trouble with the action(command)/response objects, containing array list instances. This is Ray's sample package com.play.client; import java.util.ArrayList; public class GetDetails implements

help : Search engine

2010-02-11 Thread Rijin
how can use gwt for creating a search engineand there is any way to use google's search database. This is for my final year project...please help me... -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email

Re: help : Search engine

2010-02-11 Thread Cristian Nicanor Babula
GWT is javascript. How would you implement a search engine in javascript? RTM and ask again. On 02/10/2010 04:34 PM, Rijin wrote: how can use gwt for creating a search engineand there is any way to use google's search database. This is for my final year project...please help me

Need help with Table!!!!

2010-02-11 Thread SergeZ
Please, help I searching for a very simple solution for how to build a Table!!! I need a simple table with Titles in columns and selectable rows( for possibility to get field from selected string ) and with the possibility to scroll table . I had searched a lot of sites and libraries

XMLParser Help

2010-02-10 Thread Russ
Hi, Could someone point me to an example (or tutorial) of how to retrieve, parse and display data from a reomte XML doc? I've tried numerous examples from the web with no luck. This time I'd like to try GWT's XMLParser. Thank you, -Russ -- You received this message because you are subscribed

Re: XMLParser Help

2010-02-10 Thread Harald Pehl
If you wa On 10 Feb., 16:56, Russ r...@epcinternet.com wrote: Hi, Could someone point me to an example (or tutorial) of how to retrieve, parse and display data from a reomte XML doc? I've tried numerous examples from the web with no luck. This time I'd like to try GWT's XMLParser. Thank

Re: XMLParser Help

2010-02-10 Thread Harald Pehl
If you want to map the XML to model classes you can take a look at http://code.google.com/p/piriti/. It's an XML mapper for GWT which can take data from the XML and inject it into your model classes. HTH Cheers Harald On 10 Feb., 16:56, Russ r...@epcinternet.com wrote: Hi, Could someone point

Re: XMLParser Help

2010-02-10 Thread Russ
Thanks, but I'm really just looking for a basic tutorial or example on how to grab remote XML data using GWT's com.google.gwt.xml.client.XMLParser Thanks -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: XMLParser Help

2010-02-10 Thread John Ivens
In the server impl file: @Override *public* String getMapURL(String theURL) { URL url = *null*; String s = *null*; String retstr = ; *try* { url = *new* URL(theURL); BufferedReader reader = *new* BufferedReader(*new*InputStreamReader(url.openStream())); *while* ((s = reader.readLine()) !=

Re: XMLParser Help

2010-02-10 Thread Arpad
http://code.google.com/p/google-web-toolkit/source/browse/#svn/trunk/samples/simplexml http://code.google.com/p/google-web-toolkit/source/browse/trunk/samples/simplexml/src/com/google/gwt/sample/simplexml/client/SimpleXML.java Yours, Arpad -- You received this message because you are

Re: upgrade gwt 1.5 to 1.6 help!!

2010-02-09 Thread Rajeev Dayal
second step: Switch from GWTShell to HostedMode i am not understand how i do, because i do not know where directory is the main class for swich. I need you help for indications to change the main class because i need folowing the steps for upgrating my project: In order to eliminate

Re: upgrade gwt 1.5 to 1.6 help!!

2010-02-08 Thread asle
 directory is the main class for swich. I need you help for indications to change the main class because i need folowing the steps for upgrating my project: In order to eliminate this warning, change your main class from com.google.gwt.dev.GWTShell to com.google.gwt.dev.HostedMode When i run

Re: Need help with Basic RPC Service!

2010-02-06 Thread tim.lebed...@googlemail.com
application but currently I'm having an error using even most basic RPC Service. Can anyone help? I'm  getting the following error from *NETBEANS 6.8.* ** Thanks in advance Scanning for additional dependencies: file:/C:/Users/Jiabao/Desktop/Assignment/Jan%2025%202010/SnagIT/src/java/or g/snagit

Re: upgrade gwt 1.5 to 1.6 help!!

2010-02-05 Thread Rajeev Dayal
/1.6/ReleaseNotes_1_6.html#Upgrading . The first step is ok, but de second step: Switch from GWTShell to HostedMode i am not understand how i do, because i do not know where directory is the main class for swich. I need you help for indications to change the main class because i need folowing

Re: Help on gwt app initial download...

2010-02-04 Thread dolcra...@gmail.com
GWT.runAsync(). On Feb 3, 6:45 pm, golfdude padysr...@gmail.com wrote: My app ( obfuscated ) is at 850kb and my users are complaining on initial download time as in beta mode I tend to put regular releases. My users are all in dialup ( 56 kb ) kind of connections. I have been searching this

Re: Help on gwt app initial download...

2010-02-04 Thread Abdullah Shaikh
GWT.runAsync() is the way to go.. I was able to bring down the initial size a lot less compared to not using code splitting. All the presenters/views not required initially, and required on an event, I have put all of them in code splitting. HTH - Abdullah On Thu, Feb 4, 2010 at 5:15 AM,

upgrade gwt 1.5 to 1.6 help!!

2010-02-04 Thread asle
is the main class for swich. I need you help for indications to change the main class because i need folowing the steps for upgrating my project: In order to eliminate this warning, change your main class from com.google.gwt.dev.GWTShell to com.google.gwt.dev.HostedMode When i run the project

Re: upgrade gwt 1.5 to 1.6 help!!

2010-02-04 Thread Gal Dolber
not understand how i do, because i do not know where directory is the main class for swich. I need you help for indications to change the main class because i need folowing the steps for upgrating my project: In order to eliminate this warning, change your main class from

Help on gwt app initial download...

2010-02-03 Thread golfdude
My app ( obfuscated ) is at 850kb and my users are complaining on initial download time as in beta mode I tend to put regular releases. My users are all in dialup ( 56 kb ) kind of connections. I have been searching this group and searching for some tutorial to split into modules ( one link to a

Need help with Basic RPC Service!

2010-01-31 Thread Tan Jia Bao
Hi, Previously I had posted about retrieving ArrayList using RPC Service but I've met with some errors and I decided to take it step by step and then slowly build my application but currently I'm having an error using even most basic RPC Service. Can anyone help? I'm getting the following error

Re: GWT and MySQL Connection! Help!

2010-01-28 Thread Christian Goudreau
You cannot access that directly ! You have to do it server side and then access it from a RPC class ! I don't have any simple exemple for you since I'm using Guice and Gwt-Dispatch to intercept my server calls, but you can read the doc for any exemple.

Re: Problems with build process, please help

2010-01-27 Thread Ignat Alexeyenko
) But it does feel strange to me that gwtc would need so much ram, which is why I'm asking if we can work with the compiler in this case to keep these requirements down. The other option is that we are doing something wrong (which is slightly more likely). Maybe somebody can help us sort it out

GWT and MySQL Connection! Help!

2010-01-27 Thread Jay
trying to use GWT access MySQL, I understand that I have to use RPC, I'm familiar with that but I just don't know how to implement MySQL connection into it, can anyone help me out here? Many thanks! -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group

Re: GWT and MySQL Connection! Help!

2010-01-27 Thread John Ivens
how to implement MySQL connection into it, can anyone help me out here? Many thanks! -- 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-tool...@googlegroups.com. To unsubscribe from this group

Re: GWT and MySQL Connection! Help!

2010-01-27 Thread Jason Essington
Actually, what you HAVE to do is ask your server to get the data from your database, whether that is RPC, or FormPost or HTTP GET or some form of XHR is really a decision for you to make based upon your server technology. GWT doesn't really care. As for accessing MySQL, that is a problem more

Re: GWT and MySQL Connection! Help!

2010-01-27 Thread Cristian Nicanor Babula
-test-MySQLConn/src/com/tribling/gwt/test/mysqlconn/?r=713#mysqlconn/client I'm trying to use GWT access MySQL, I understand that I have to use RPC, I'm familiar with that but I just don't know how to implement MySQL connection into it, can anyone help me out here? Many thanks! -- You received

Re: GWT and MySQL Connection! Help!

2010-01-27 Thread Christian Goudreau
RPC, I'm familiar with that but I just don't know how to implement MySQL connection into it, can anyone help me out here? Many thanks! -- 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-tool

Re: Problems with build process, please help

2010-01-27 Thread JacoGr
Some specifics for the app Pieter is speaking about: 1. Under GWT 1.7.1, the application doesn't compile with anything under -Xmx2160m -Xms2048m 2. There are around 1900 files used by the GWT-RPC as DTOs 3. On a normal machine, the 1.7.1 compile takes around 15-20 mins (Single language, all

Re: Problems with build process, please help

2010-01-27 Thread JacoGr
On Jan 27, 7:44 pm, JacoGr jac...@gmail.com wrote: 1. Under GWT 1.7.1, the application doesn't compile with anything under -Xmx2160m -Xms2048m Sorry, that should have been -Xms2048k Jaco -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group.

Re: GWT and MySQL Connection! Help!

2010-01-27 Thread Tan Jia Bao
Thanks for all the replies people, but I'm still kinda lost. I'm actually making a Drag and Drop E-Commerce website using GWT for a school project, I got kinda stuck because previously I had first completed my website before implementing GWT in. Without GWT, I called out my product information

Re: GWT and MySQL Connection! Help!

2010-01-27 Thread Tan Jia Bao
Alright, Christian I saw your work and got an idea how to go about it. I used my MainEntryPoint to access the DAO directly but I'm getting compilation about my imports. import java.util.logging.Level; import java.util.logging.Logger; My code is this public MainEntryPoint() { try {

Re: Problems with build process, please help

2010-01-26 Thread Francisco Bischoff
is that we are doing something wrong (which is slightly more likely). Maybe somebody can help us sort it out? Pieter On Jan 25, 11:59 am, Francisco Bischoff franzbisch...@gmail.com wrote: Hi, I'm not the very experient here, but have you tried to follow the compiler error? [ERROR] Out

Re: Problems with build process, please help

2010-01-26 Thread Pieter Breed
is on the server, from where normal GWT rpc is used to communicate with the client via the API service calls. For most of these DTO's we create .properties files that help us to create beans to which we can bind the UIs. Does this information help? Pieter On Jan 26, 2:35 pm, Francisco Bischoff

Re: Problems with build process, please help

2010-01-26 Thread Pieter Breed
XML serializers and DTOs. This pipeline is on the server, from where normal GWT rpc is used to communicate with the client via the API service calls. For most of these DTO's we create .properties files that help us to create beans to which we can bind the UIs. Does this information help? Pieter

Re: Problems with build process, please help

2010-01-26 Thread Francisco Bischoff
files that help us to create beans to which we can bind the UIs. Does this information help? Pieter On Jan 26, 2:35 pm, Francisco Bischoff franzbisch...@gmail.com wrote: The code you are trying to compile is the original from GWT 1.7 project or have you made some changes

Problems with build process, please help

2010-01-25 Thread Pieter Breed
Hi All, The company I work for has a large enterprise application built on GWT. We've most recently been using v1.7.1 and we had a pretty stable development platform. Some of our customers are complaining about slowness in our application. Specifically it takes about 40-60 seconds to load the

Re: Problems with build process, please help

2010-01-25 Thread Francisco Bischoff
Hi, I'm not the very experient here, but have you tried to follow the compiler error? [ERROR] Out of memory; to increase the amount of memory, use the -Xmx flag at startup (java -Xmx128M ...) Maybe you just need to reserve more memory for the java compiler. -- Francisco Bischoff

Re: Problems with build process, please help

2010-01-25 Thread Pieter Breed
to me that gwtc would need so much ram, which is why I'm asking if we can work with the compiler in this case to keep these requirements down. The other option is that we are doing something wrong (which is slightly more likely). Maybe somebody can help us sort it out? Pieter On Jan 25, 11:59 am

Re: Problems with build process, please help

2010-01-25 Thread Alexander
these requirements down. The other option is that we are doing something wrong (which is slightly more likely). Maybe somebody can help us sort it out? Pieter On Jan 25, 11:59 am, Francisco Bischoff franzbisch...@gmail.com wrote: Hi, I'm not the very experient here, but have you tried

Re: Problems with build process, please help

2010-01-25 Thread Pieter Breed
if we can work with the compiler in this case to keep these requirements down. The other option is that we are doing something wrong (which is slightly more likely). Maybe somebody can help us sort it out? Pieter On Jan 25, 11:59 am, Francisco Bischoff franzbisch...@gmail.com wrote

Re: Problems with build process, please help

2010-01-25 Thread Alexander
(which is slightly more likely). Maybe somebody can help us sort it out? Pieter On Jan 25, 11:59 am, Francisco Bischoff franzbisch...@gmail.com wrote: Hi, I'm not the very experient here, but have you tried to follow the compiler error? [ERROR] Out of memory

Re: Urgent help in GWT-Visualization

2010-01-21 Thread Brij Mohan
try out the faq http://code.google.com/docreader/#p=gwt-google-apiss=gwt-google-apist=VisualizationFAQ On Tue, Jan 19, 2010 at 4:37 PM, Ramya Devi Dharmarajan dramyadevi2...@gmail.com wrote: Hi, I have a problem in my below code.Please share your thoughts.This is Urgent. Code :

Urgent help in GWT-Visualization

2010-01-19 Thread Ramya Devi Dharmarajan
Hi, I have a problem in my below code.Please share your thoughts.This is Urgent. Code : *Sample.java* TimeLine timeLine = *new* TimeLine(); VisualizationUtils.*loadVisualizationApi*(timeLine, AnnotatedTimeLine.* PACKAGE*); widget = timeLine.getAnnotatedChart(); *TimeLine.java:* * public*

Re: Can anyone help me add jars

2010-01-15 Thread Ryan Kumsher
about thesejars they are purely used by the servlets and the only connection is done via DSRequests through URLs. Can anyone help me figure out what I'm doing wrong? This is driving me nuts. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group

Help with the toolkit - עזרה עם הGWT

2010-01-15 Thread ido
hey, i'm trying to use the GWT, but when i'm running the example application (the one that the webAppCreator creates) i keep on getting: Connection received from server name:several ports [ERROR] Unexpected message type INVOKE; expecting CheckVersions and the web page can't be loaded. what

Re: MVP design help for Display interface

2010-01-14 Thread Jeff Irving
again for your help. Jeff On Jan 11, 5:46 pm, Thomas Broyer t.bro...@gmail.com wrote: On 9 jan, 01:16,JeffIrvingjeffirvin...@gmail.com wrote: Hello everyone. I'm hoping to elicit some suggestions regarding how to apply an MVP design to my particular application. My situation is that I have

Re: MVP design help for Display interface

2010-01-12 Thread Trevis
My solution to this problem was to create one presenter/view pair for the table as a whole and then a seperate presenter/view pair for the rows. This way the Cell click handlers are all in the same context. The table presenter gets new row instances from gin and initializes it by passing in a

MVP design help for Display interface

2010-01-11 Thread Jeff Irving
Hello everyone. I'm hoping to elicit some suggestions regarding how to apply an MVP design to my particular application. My situation is that I have some tabular model data that includes row-specific user actions (ex. 'discard', 'reprocess', 'submit', etc.) that are ultimately presented as

Re: MVP design help for Display interface

2010-01-11 Thread Thomas Broyer
On 9 jan, 01:16, Jeff Irving jeffirvin...@gmail.com wrote: Hello everyone. I'm hoping to elicit some suggestions regarding how to apply an MVP design to my particular application. My situation is that I have some tabular model data that includes row-specific user actions (ex. 'discard',

help in creating menu using popuppanel or dialogbox

2010-01-08 Thread Abdullah Shaikh
Hi, I want to create menus like on this site http://www99.shopping.com/, I have used Hyperlink for menu, and added a mouseover handler, on mouseover I display a PopupPanel or should I use DialogBox ?, but now the issue when should I hide the PopupPanel, also there is no mousehandlers for

Re: help in creating menu using popuppanel or dialogbox

2010-01-08 Thread Olivier
Hi, Why don't you use the menu bar. http://gwt.google.com/samples/Showcase/Showcase.html#CwMenuBar http://google-web-toolkit.googlecode.com/svn/javadoc/2.0/com/google/gwt/user/client/ui/MenuBar.html Oli On 8 Jan 2010, at 09:51, Abdullah Shaikh wrote: Hi, I want to create menus like on

Re: help in creating menu using popuppanel or dialogbox

2010-01-08 Thread Abdullah Shaikh
Sorry I should have given some other example site, but I couldn't find any. Actually I want the menu drop down to be in 2 columns or may be 3 ? I will try to find an example online. - Abdullah On Fri, Jan 8, 2010 at 2:43 PM, Olivier oliv...@digiworks.es wrote: Hi, Why don't you use the

Re: help in creating menu using popuppanel or dialogbox

2010-01-08 Thread Abdullah Shaikh
Finally got this link, http://www.salesforce.com/demos/, when you go to Products or Services menu, there is a popup displayed with 2 columns. I wanted the same way. Any idea on how to achieve this ? - Abdullah On Fri, Jan 8, 2010 at 3:01 PM, Abdullah Shaikh abdullah.shaik...@gmail.com wrote:

Re: help in creating menu using popuppanel or dialogbox

2010-01-08 Thread mariyan nenchev
Well it's actually very simple. Create one TabPanel and on mouse over event (over the tab) display menu using absolute positioning starting right under the selected tabbar. On Fri, Jan 8, 2010 at 11:55 AM, Abdullah Shaikh abdullah.shaik...@gmail.com wrote: Finally got this link,

Re: help in creating menu using popuppanel or dialogbox

2010-01-08 Thread Abdullah Shaikh
And when should I hide the menu ? also should I use PopupPanel or DialogBox for menu ? I will try out with TabPanel, will update my findings. Thanks - Abdullah On Fri, Jan 8, 2010 at 4:10 PM, mariyan nenchev nenchev.mari...@gmail.comwrote: Well it's actually very simple. Create one

Re: help in creating menu using popuppanel or dialogbox

2010-01-08 Thread mariyan nenchev
Well, when the mouse is not over the tab bar. On Fri, Jan 8, 2010 at 1:09 PM, Abdullah Shaikh abdullah.shaik...@gmail.com wrote: And when should I hide the menu ? also should I use PopupPanel or DialogBox for menu ? I will try out with TabPanel, will update my findings. Thanks -

Re: help in creating menu using popuppanel or dialogbox

2010-01-08 Thread Abdullah Shaikh
Hey this where the issue is, when the mouse is not over the tab bar, that means it can be in 2 places either 1) on the menu itself or 2) not on the menu. if we hide the menu if its not over tab bar, its ok for the 2 point, but when its on the menu itself, it will close the menu bcoz the mouse is

Re: help in creating menu using popuppanel or dialogbox

2010-01-08 Thread philippe
If you want a menu which is very personnalized you should uses div elements with some handlers. You must play with dom as html / CSS / Javascript but you can do in gwt / CSS only. You can try with this begin: code public class MyDivPanel extends FlowPanel implements MouseDownHandler,

Re: help in creating menu using popuppanel or dialogbox

2010-01-08 Thread Abdullah Shaikh
Thanks Philippe, I will try this out. - Abdullah On Fri, Jan 8, 2010 at 6:47 PM, philippe vonck...@yahoo.fr wrote: If you want a menu which is very personnalized you should uses div elements with some handlers. You must play with dom as html / CSS / Javascript but you can do in gwt / CSS

Help is needed (running GWT application)

2010-01-08 Thread Shadiho
Hi, I am new to GWT and I just installed GWT SDK and Eclipse plugin, after creating a GWT application I can compile and run it, but my problem that when I am copying the URL to any browser, I am getting Web Page unavailable or Link is broken. Please, any one can advise the reason of this issue

Re: Help is needed (running GWT application)

2010-01-08 Thread Johnathan James
Can you give more detail on what you are doing? Something like.. 1. Created Web Project in Eclipse. 2. Ran the project as Debug in Eclipse. 3. A URL was given to me in Eclipse. 4. I pasted the URL in a browser, and got the error. It will help figure out whats going wrong.. Johnathan On Jan 8

pls help !!!!!!!!!!

2010-01-06 Thread ben fenster
i have a presentation tomorrow and every thing works great i am using gwt 2.0 but when i compile and run from the compiled version all of the http request does not work -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group,

Re: pls help !!!!!!!!!!

2010-01-06 Thread olivier nouguier
You should use firebug to learn more ! On Wed, Jan 6, 2010 at 5:55 PM, ben fenster fenster@gmail.com wrote: i have a presentation tomorrow and every thing works great i am using gwt 2.0 but when i compile and run from the compiled version all of the http request does not work -- You

<    7   8   9   10   11   12   13   14   15   16   >