Re: GWTTestSuite - ClassCastException on executing test suite

2008-10-23 Thread sean
Hi Jan, I also receive the No source code is available for type com.google.gwt.junit.tools.GWTTestSuite; did you forget to inherit a required module? message. I think this must be something GWT just left out. One would think you would find the module for GWTTestSuite, but it does not exist.

Test management system integrated with JIRA and Bugzilla

2008-12-08 Thread sean
. Do visit www.getzephyr.com to explore more and let us know your feedback. Thanks in advance, Sean Stewart www.getzephyr.com --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post

Re: Image.addClickListener() - BUG?

2009-02-18 Thread Sean
I'm not sure, I was able to do a simple example straight from the default project that comes from running the ProjectCreator and ApplicationCreator for eclipse. I added the lines: img.addClickListener(new ClickListener(){ public void onClick(Widget sender) {

Re: Apps on Android!

2009-02-18 Thread Sean
GWT is for the web, so what you would want to do if you're heart is set on GWT and not on the Android native langauge, is to make a webpage just for the Andriod, so you can imagine the scaling and buttons and text to be usable on the phone. THne just use Android to gotot hat web page. The bright

Re: Apps on Android!

2009-02-18 Thread Sean
smar...@gmail.com wrote: Are there any procedures for the comunication between android and qwt- server? I want to make a simply app in android that send a String to a server that are extenal(not in android); this server is make in gwt. Thanks On 18 Feb, 14:39, Sean slough...@gmail.com wrote

Re: Search Engine Optimization of GWT based webapp

2009-02-23 Thread Sean
Check this out. Pretty indepth discussion about GWT + Search Engines. http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/8fe6a3d2eaab80bb/ On Feb 23, 2:37 pm, Nitin Sawant nitin.sawant2...@gmail.com wrote: I want ask about the search engine friendlyness of GWT based web

Re: Toggle Button setting text color?

2009-02-23 Thread Sean
I tried your example and the text color changes. I used very different colors to make sure I was seeing what I wanted and to make sure they were web viable. CSS: .image-ToggleButton { background-color:black; color :white; }

Re: Toggle Button setting text color?

2009-02-24 Thread Sean
/Image2.jpg Note the css has changed to red, but no effect on the text. On Feb 23, 9:06 pm, Sean slough...@gmail.com wrote: I tried your example and the text color changes. I used very different colors to make sure I was seeing what I wanted and to make sure they were web viable. CSS

Re: Toggle Button setting text color?

2009-02-24 Thread Sean
/Image2.jpg Note the css has changed to red, but no effect on the text. On Feb 23, 9:06 pm, Sean slough...@gmail.com wrote: I tried your example and the text color changes. I used very different colors to make sure I was seeing what I wanted and to make sure they were web viable. CSS

Know when the site is being viewed by hand held

2009-02-25 Thread Sean
I was wondering how certain sites, ESPN.com for example know to go to the hand helds version of the site (Smaller, more compact, less pictures) when viewing it on the iPhone for example. I'd like to take a stab at making one, but I would like to know how to detect and then redirect the browser

Deploying to a Shared TOMCAT

2009-03-01 Thread Sean
Hello, I have read dozens of posts about deploying RPC's to TOMCAT, but I still can't seem to get it done. I am working with MOCHA hosting and they allow one WEB-INF file in the base of your public http directory. I can't seem to figure out what in the web.xml file is talking about what. The

Re: Deploying to a Shared TOMCAT

2009-03-02 Thread Sean
groups can point me in the right direction. I think I might possibly be confused by, the Url-pattern and what exactly is the url-pattern supposed to represent. This is where I dislike Google's example and naming everything Foo. and I called my Mom and she said I am spelling Sean correctly! ;-P

Re: Render site in Tab

2009-03-02 Thread Sean
Yeah sure, at some point a GWT site can boil down to one Widget, typically some Panel. Just add that Panel to your tabPanel, which you add to the RootPanel and you should have your desired functionality. On Mar 2, 7:39 am, Naga nvija...@gmail.com wrote: Hello, Is it possible to show the

Re: Conditional Breakpoints in Hosted Mode

2009-03-02 Thread Sean
Yeah, I was able to get conditionals to work. I added a varable int test = 0 and incremented it in a loop and put in the condition of the break point test50 and it stopped when test was 51. A small workaround could be, insert if(test50) System.out.println(BREAK) and put a break Point

Re: Deploying to a Shared TOMCAT

2009-03-02 Thread Sean
this, the application WILL NOT FIND YOUR URL. On Mon, Mar 2, 2009 at 5:26 AM, Sean slough...@gmail.com wrote: I did restart Tomcat still no go. #1 The latest I tried putting all the google files and Web-INF directory in my base http directory. So I am just calling: http://www.celticlock.com/Foo.html

Re: Deploying to a Shared TOMCAT

2009-03-02 Thread Sean
. And the servlet-name maps to the servlet-Class, right? So, it just seems like Tomcat isn't picking up that /Foo should somehow be related to what's in the web.xml? Sorry if these are naive questions, I just don't know anything about this. I appreciate everyone helping me. On Mar 2, 6:40 pm, Sean slough

Re: Deploying to a Shared TOMCAT

2009-03-04 Thread Sean
        /servlet-mapping /web-app On Mon, Mar 2, 2009 at 4:40 PM, Sean slough...@gmail.com wrote: I do have that code, I even added in the null check just to be doubley sure and still no go. It works in hosted mode, just with this web.xml (and I tried removing the com.ll.server from teh

Re: How to add a component on clicking of a button

2009-03-05 Thread Sean
I'm not sure what library uses ButtonListenerAdapters, maybe GWT-EXT? But vanilla GWT works: /** * This is the entry point method. */ final VerticalPanel m_content = new VerticalPanel(); Button button1 = new Button(Click Me); Button button2 = new Button(Ta-daaa!);

Re: how to get imsges from server to client

2009-03-05 Thread Sean
Check out the ImageBundleClass Here's a good explanation of what it does and how to use it: http://code.google.com/p/google-web-toolkit/wiki/ImageBundleDesign On Mar 5, 1:52 am, avd avdheshgupta...@gmail.com wrote: dear sir, i have a problem in gwt my problem is: How to get images may be

Re: Question about Server-client model.

2009-03-05 Thread Sean
GWT doesn't take in code using Swing, ART or some other API and converts it into Java Script. It uses the GWT API to create GUIs then when published converts it to Java Script +HTML. You would then upload the outputted JavaScript and HTML that GWT makes from the Java code to your web server. And

Re: How to use GWT where input is text and output is list?

2009-03-06 Thread Sean
http://gwt.google.com/samples/Showcase/Showcase.html That's a great place to start. You can visually see what's capable and get the source code of exactly what you are looking at. On Mar 5, 10:46 pm, Rahul rahul.ganb...@gmail.com wrote: I am a beginner, I read article on GWT but couldn't get

Re: GWT : Fitting a Tree inside a Panel

2009-03-06 Thread Sean
What kind of panel are you using? If it's a simple Panel try editing the CSS of the panel and remove all top padding and margins. The same with the tree. If it's a VerticalPanel try using the protected void setCellVerticalAlignment(Element td, HasVerticalAlignment.VerticalAlignmentConstant

Re: Display image from post-request in GWT client

2009-03-10 Thread Sean
Can't you create the .jpgs on the server, but have a cleanup script that runs on a chronjob that cleans them out after a certain amount of time? On Mar 10, 10:48 am, mufflon narkosegespe...@gmail.com wrote: ^^push Somebody got an idea? I really need to know how this works (if it works at

Re: How to call a servlet from GWT

2009-03-11 Thread Sean
If you are calling a new servlet you are just creating you may want to check out GWT RPC's as well. On Mar 11, 8:20 am, shajeer kt shajeerkt...@gmail.com wrote: Dear all,   How to call a servlet from GWT code .   Along with calling servlet i want to pass some parameters with it..   How is

Re: Need help with debugging

2009-03-11 Thread Sean
Created directory C:\Workspace_spl\Test\src\com\sean Created directory C:\Workspace_spl\Test\src\com\sean\client Created directory C:\Workspace_spl\Test\src\com\sean\public Created file C:\Workspace_spl\Test\src\com\sean\TestEntry.gwt.xml Created file C:\Workspace_spl\Test\src\com\sean\public

Re: Custom widget theme?

2009-03-12 Thread Sean
Sure, have a listener attached to a drop down box or menu or a button, some way for the user to select the theme. And on select use .removeStyleName(style) to remove the old style and .addStyleName (style) to add the new style name. If this is the only style you have applied to the Widget you

Re: Ideas on Using GWT for a Project

2009-03-13 Thread Sean
Yeah, everything done on iGoogle can be done in GWT. You are right, you can use GWT's mouse listener class to implement Drag and Drop. There are a bunch of libraries out there that can't give you a huge jump forward in that area like :http://code.google.com/ p/gwt-dnd/ As for the widgets

Re: Help with DecoratedStackPanel

2009-03-18 Thread Sean
Here, check this out. It has source code to get you started as well: http://gwt.google.com/samples/Showcase/Showcase.html#CwStackPanel You will only need one stack Panel, but have a StackPanel.add() for Name and for Address. For something like Name and Address, StackPanel seems like an odd

New 1.6 Structure.....where to put things

2009-05-05 Thread Sean
So, I am just starting 1.6 and I am confused at the most basic thing, where is my base directory. If I want to add an image to the default RootPanel that's created using the new Eclipse plugin (which is totally sweet), where do I put the actual .jpg? Ex: Image i = new Image(Pup_Milk_Chin.jpg);

Re: New 1.6 Structure.....where to put things

2009-05-05 Thread Sean
Ah, thank you that worked. After so long with the www folder being for output only, it didn't occur to me that the deployable folder is for input as well. Thanks! On May 5, 9:59 pm, hezjing hezj...@gmail.com wrote: Hi Sean You can place your image files in projectFolder/war On Wed, May 6

Re: Imports in the Client Side

2009-05-20 Thread Sean
What are you using a FileInputStream and InputStream for on the client side? I don't think they would be valid for GWT client Side code. If you want input you either have to get it from one of your widgets (TextBox, TextArea..etc) or from the server via an RPC call or HTTP request. On May 20,

RPC Help

2009-05-22 Thread Sean
Hi, I'm trying to deploy an RPC, but I can't figure out how to do it in 1.6. The problem is, the new RPC seems to always have the request being [projectname]/[RPC entry Point] My problem with this is, on my shared Tomcat account, the way I can tell the server to have Tomcat execute this

Re: RPC Help

2009-05-23 Thread Sean
:22 PM, Sean slough...@gmail.com wrote: Hi, I'm trying to deploy an RPC, but I can't figure out how to do it in 1.6. The problem is, the new RPC seems to always have the request being [projectname]/[RPC entry Point] My problem with this is, on my shared Tomcat account, the way I can

Re: RPC Help

2009-05-23 Thread Sean
It looks like the problem is, the moduleBaseUrl for greetingservice is http://localhost:8080/celticlock/; and it's tacking on the serviceUrl to that possibly. On May 23, 9:26 am, Sean slough...@gmail.com wrote: I thought that would work, but even with:  String observationServiceURL

Re: RPC Help

2009-05-23 Thread Sean
the full observationServiceURL without the celticlock, it works! Thanks for your help! On May 23, 9:34 am, Sean slough...@gmail.com wrote: It looks like the problem is, the moduleBaseUrl for greetingservice is http://localhost:8080/celticlock/; and it's tacking on the serviceUrl to that possibly

Re: RPC Help

2009-05-23 Thread Sean
that if the first character is a slash, the URL is relative to the host, otherwise it's relative to the page. Ian On Sat, May 23, 2009 at 6:26 AM, Sean slough...@gmail.com wrote: I thought that would work, but even with:  String observationServiceURL = servlets/celticlocks/greet

Accessing a DB

2009-06-09 Thread Sean
In regards to using RPC's to access a database, I am worried about security. I'd love to use an RPC to access a DB, but what I can't figure out is how to store the name and pw of the DB. I'm afraid if I put it right in the code someone could just read it. If I try to read it from a file, I'm

Re: Accessing a DB

2009-06-09 Thread Sean
is on the server and no one has access to it. Sean wrote: In regards to using RPC's to access a database, I am worried about security. I'd love to use an RPC to access a DB, but what I can't figure out is how to store the name and pw of the DB. I'm afraid if I put it right in the code someone could

Stack Panel Background +Image

2009-06-16 Thread Sean
I am working on making a StackPanel green, but not a flat green. Pretty much teh exact same way it gradients up per item in the default stack panel in blue, but in a green hue. Since I want the gradient, I've made a .png of the exact look I want. However, when I assign it to the background:

Zephyr v2.5 with Advanced Test Management Capabilities

2009-06-18 Thread sean
to explore more and let us know your feedback. Best Regards, Sean www.getzephyr.com --~--~-~--~~~---~--~~ 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: Newbie Question - Integrate GWT on Existing page

2009-06-24 Thread Sean
In the default application that is created using the webAppCreator.cmd or the Eclipse plugin you will see they add specific elements to specefic parts of the page. In the HTML under the body you will see: table align=center tr td colspan=2 style=font-weight:bold;Please enter your

How to know when a Widget is fully loaded....

2009-06-27 Thread Sean
I'm having trouble with pictures loading fully to know a widgets full size. I have my main website component as a Composite. It's got quite a few pictures, including one large one. I place this main component on an Absolute Panel. I have a Resize Listener to figure out how big the Client Window

Re: How to know when a Widget is fully loaded....

2009-06-29 Thread Sean
, without being downloaded yet. I didn't know Load Handlers existed. That stinks it doesn't work well with IE. I think I do need to look into using the CSS more with %'s. Thanks again for all the ideas! Sean On Jun 28, 5:02 am, Adam T adam.t...@gmail.com wrote: You can generally hook into when

Re: How to know when a Widget is fully loaded....

2009-06-29 Thread Sean
I'm also thinking about adding the size of the image to the DB. So I can at least set up my panel sizes correctly, and just let the pictures fill it in as they download. On Jun 29, 8:14 am, Sean slough...@gmail.com wrote: Hi Adam, Thanks for all the great ideas. I also think it has to do

Re: om.google.gwt.user.client.rpc.IncompatibleRemoteServiceException: This application is out of date, please click the refresh button on your browser.

2009-07-07 Thread Sean
When you deployed, did everything get overwritten that needed to? Maybe you forgot the WEB-INF folder or something? Every once in a while I delete everything off the server and recopy everything from my local just to avoid things like that. On Jul 7, 2:56 am, bhomass bhom...@gmail.com wrote:

ImageBundle use question

2009-07-12 Thread Sean
So, I am making a small personal page to keep track of my NFL picks for this coming season. There are 32 teams, and I want to have their logos appear next to their stats, etc. Being as it'll be an almost constant 32 image requests for a pretty small image, the overhead will be huge, I figure this

Re: GWT and mysql

2009-07-13 Thread Sean
The way I do it is using an RPC call to get data from the SQL database and return the data. Once you do it once and figure out how everything works, it's simple to do after that. On Jul 11, 11:03 pm, jon...@gmail.com jon...@gmail.com wrote: how do I connect to mysql and display data from a

Re: ImageBundle use question

2009-07-14 Thread Sean
statement would look cleaner. Or maybe you could wrap it all up in a nice little Enum class. On Jul 12, 8:18 pm, Sean slough...@gmail.com wrote: So, I am making a small personal page to keep track of my NFL picks for this coming season. There are 32 teams, and I want to have their logos

Image Bundle not working in IE

2009-07-14 Thread Sean
I was wondering if IE still doesn't work correctly with Image Bundles. I've seen several older posts (pre 1.6) where people had problems. I now have three ImageBundles that I use, all of them work in Firefox and Chrome but not in IE. It's just a blank gif. where the image should be. Are there

Re: Copying from Result Set to Array List

2009-07-15 Thread Sean
while(rs.next()) is fine and pretty standard way to go through. I'm confused by how you are adding the data to the ArrayList though. You get your resultSet which judging by your query should be TableNames, which I assume are Strings?. But you're getting it out as an INT then converting to a

Re: Copying from Result Set to Array List

2009-07-16 Thread Sean
string in it. HTH, Chad On Jul 15, 10:54 am, Rahul coolrahul18...@gmail.com wrote: Hi Sean, Thanks for replying. I understood what you are trying to say. @Chad can you elborate on Your code would only work if the SourceTableName column in the SourceTables table is of an integer

Re: Copying from Result Set to Array List

2009-07-16 Thread Sean
(HostedModeBase.java:405)         at com.google.gwt.dev.HostedMode.main(HostedMode.java:232) i dunno how can be arrayindex out of bound, i am copying it correctly i belive. Thanks a lot On Jul 16, 8:42 am, Sean slough...@gmail.com wrote: In all places you reference your callback, including

Re: Image Bundle not working in IE

2009-07-17 Thread Sean
the ImageBundles work in hosted mode? Or is this a problem that you're seeing in web mode? What platform (OS and Browser) are you on? On Thu, Jul 16, 2009 at 10:32 AM, Sean slough...@gmail.com wrote: I was just wondering if the lack of response is because people use ImageBundles and don't

Re: Image Bundle not working in IE

2009-07-17 Thread Sean
, but at this point I'm just confused. On Jul 17, 6:17 pm, Sean slough...@gmail.com wrote: So, I am working on a Windows Vista machine, using Eclipse 3.4 However in IE 6 (which I have at work) and IE8 none of the image bundles show up. And I noticed that default Trees no longer show the Plus/Minus

Re: Image Bundle not working in IE

2009-07-20 Thread Sean
. I'll keep playing with it, see if I can figure something out. On Jul 18, 11:25 am, Thomas Broyer t.bro...@gmail.com wrote: On 18 juil, 00:34, Sean slough...@gmail.com wrote: Sadly, even with clean war file, IE still is having problems. I wonder if it's some security level thing? I'm not sure

Re: Export GWT app as WAR file - EASY tutorial for this?

2009-07-20 Thread Sean
I did not know that! I'll have to try that myself. Makes figuring out Server Side errors less guess work! On Jul 20, 11:33 am, martinhansen martin.hanse...@googlemail.com wrote: OK, I have found out that I can invoke err.printStackTrace() on the server, which will log the error to logs/stdout.

Re: Display Frame with content from RPC

2009-07-20 Thread Sean
Have you tried using the HTML widget? That should work. Never used the head marks in it, but if you put the contents of the BODY tags in it, that should work just fine. On Jul 18, 3:04 pm, Norman Maurer nor...@apache.org wrote: Hi all, I'm currently working on a gwt based webmail. I want to

Re: Add external java project to GWT project in Eclipse

2009-07-20 Thread Sean
You can export the non-GWT java files into a jar and drop those in the WEB-INF/lib folder. That's what I do. On Jul 20, 11:44 am, martinhansen martin.hanse...@googlemail.com wrote: Hello, my GWT server-side code needs an external java project. I have added the project under Configure build

Re: What is the best way to enable save/apply button on TextBox edit

2009-07-20 Thread Sean
You can put on a keyboard listener, and before you enable the Save button, make sure there is text in the text box. textBox.getText ().length0 type of thing. On Jul 20, 12:26 pm, Bakul bakul.ku...@gmail.com wrote: Hi, I have added:                  myTextbox.addChangeListener(new

Re: GWT UI design best practices

2009-07-20 Thread Sean
http://code.google.com/events/io/sessions.html#gwt I'd check out these videos, I felt I learned a lot watching these talks. They def. gave me great ideas on how to structure programs and use event busses to keep things neat. That specific talk was: Google Web Toolkit Architecture: Best Practices

Re: Image Bundle not working in IE

2009-07-21 Thread Sean
deployment. On Mon, Jul 20, 2009 at 11:59 AM, Sean slough...@gmail.com wrote: The fact that it works when in Hosted mode in IE, but not when it's deployed is making me think it is a security thing. I'm just not sure the work around. I've tried various security settings, but can't get it to show

Re: Image Bundle not working in IE

2009-07-21 Thread Sean
. It's Mocha hosting, so it's a reputable place. I can't understand how the .js being read from there would do something different then on my local machine. On Jul 21, 3:19 pm, Sean slough...@gmail.com wrote: If I understand you correctly, what I did was go into Run Configurations and turned off

Re: Image Bundle not working in IE

2009-07-21 Thread Sean
Crap. So I uploaded the sample Tree app that did NOT work with my server to the Google Appengine and it worked fine. Dammit. Why would a server not serve the imagebundles to IE correctly? On Jul 21, 4:19 pm, Sean slough...@gmail.com wrote: As a quick Test, I made a GWT App that was just a Tree

Re: Image Bundle not working in IE

2009-07-21 Thread Sean
your help! (Sorry if this double posted) On Jul 21, 5:37 pm, Thomas Broyer t.bro...@gmail.com wrote: On 21 juil, 22:29, Sean slough...@gmail.com wrote: Crap. So I uploaded the sample Tree app that did NOT work with my server to the Google Appengine and it worked fine. Dammit. Why would

Re: Image Bundle not working in IE

2009-07-22 Thread Sean
* it worked great! Thank you everyone for all your help. I learned a ton! On Jul 22, 3:59 am, Thomas Broyer t.bro...@gmail.com wrote: On 22 juil, 00:47, Sean slough...@gmail.com wrote: Yeah, that'd be great. I don't mean to link whore but:http://www.celticlock.com/ All the images

Re: Login Application

2009-07-22 Thread Sean
I don't use the Google App engine, so I built my own login. I have a database with user name's and passwords. I take what's in the text boxes, send it via RPC to the server, have the server select the password from the db for the submitted username and check it against what was sent. IF either

Re: not able to deploy to tomcat server

2009-07-22 Thread Sean
Is this a shared tomcat server? Something I experienced and several other people who've e-mailed me experienced is that some shared TOMCAT servers require certain prefixes for tomcat to actually handle the servlet request. For instance, all my RPC calls have to have /servlet in it or TOMCAT

Re: Connecting GWT with XML or MYSQL... HELP!

2009-07-28 Thread Sean
I connect to a MYSQL DB on my server using GWT's RPC's. In the interface's Impl method on the server side is where I connect to the DB, execute the queries and then return the results. Works great. Another option for you to look at. On Jul 28, 1:41 am, Kamal Chandana Mettananda lka...@gmail.com

Re: Differences between Firefox and IExplorer

2009-07-28 Thread Sean
You shouldn't have to compile the source code differently depending on the browser. Depending on what browser is loading the main javascript (which GWT gets compiled into), a special .js is loaded for that browser. That being said, some times I've personally noticed things like formatting have

RichTextToolbar Question

2009-07-31 Thread Sean
So, I am looking at the GWT Showcase and at: http://gwt.google.com/samples/Showcase/Showcase.html#CwRichText They have this amazing Toolbar. I look at the source code and they have: RichTextArea area = new RichTextArea(); area.ensureDebugId(cwRichText-area); area.setSize(100%, 14em);

Re: RichTextToolbar Question

2009-07-31 Thread Sean
Ah, thank you. I forgot all the examples are in the GWT source code. This thing is pretty sweet, I'm surprised it's not part of the normal API. Thank you, Sean On Jul 31, 9:23 am, Imran imran...@gmail.com wrote: This class is not part of the API. Instead, it was created in the demo to show

Re: location for images

2009-08-11 Thread Sean
I had problems with this too. Regular images, that are NOT in an Image Bundle can go in your war file. I typically keep a WAR/images folder and drop everything in there. Then a reference to them would be Image test = new Image(images/ test.png); if the image file is WAR/images/test.png

Re: Best practices for screen layout in GWT

2009-08-11 Thread Sean
I personally did the layout all in code. I originally used a DockPanel and realized that I was only using WEST, NORTH, and CENTER. And being in a DockPanel limited me. So I ended up swapping out (Fairly easily) for a VerticalPanel with either Widgets or a HorizontalPanel in it. While the widgets

Re: Showcase example implimentation

2009-08-11 Thread Sean
The entire Showcase project is included when you download GWT. Look under your GWTdirectory, under samples. You'll find all the source code to Showcase. On Aug 11, 7:08 am, Milon milon@gmail.com wrote: Hi Experts, Did anyone tried the Showcase example of GWT where on the left pane there

Re: how do you load one image before drawing it

2009-08-13 Thread Sean
I did a very similar thing, but my pop up doesn't redraw. I just do a new Image.setUrl() and I don't get that shrink/grow movement. I believe (I don't have source code with me) I extended a dialog panel (so I could add my own arrow and close controls) with an Image in it and just always call

Re: how do you load one image before drawing it

2009-08-14 Thread Sean
it a lot. On Aug 13, 6:19 am, Sean slough...@gmail.com wrote: I did a very similar thing, but my pop up doesn't redraw. I just do a newImage.setUrl() and I don't get that shrink/grow movement. I believe (I don't have source code with me) I extended a dialog panel (so I could add my own arrow

Re: StackPanel

2009-09-08 Thread Sean
http://gwt.google.com/samples/Showcase/Showcase.html#CwStackPanel Check out the source code for that. That's how I learned to add the images into the StackPanel. Hope that helps. On Sep 8, 9:30 am, Parmeet Kohli parmeet.ko...@gmail.com wrote: Hi All,         I need help with adding an image

Re: Serialization Error with own class while compiling

2010-03-31 Thread Sean
Don't have a constructor with arguments, only use Set/Gets. What's a Kontakt? Is that serializable? Fix the constructor and verify Kontakt is serializable and it should work. On Mar 31, 10:43 am, Johannes Stein johannes.st...@googlemail.com wrote: Hey, ive got a problem and im searching

Re: timeseries chart using GWT

2010-05-20 Thread Sean
Here, check this out. This is Google's Visualization and Chart API for GWT: http://code.google.com/p/gwt-google-apis/wiki/VisualizationGettingStarted On May 20, 3:23 am, bala bala.thurap...@gmail.com wrote: Hi All, I wanted to draw simple timeseries chart using GWT. can u please send me the

Re: resize-able panels like in google wave

2010-05-20 Thread Sean
I haven't used Google Wave, but it sounds like you're talking about HorizontalSplitPanel which is built into GWT. There's also a VerticalSplitPanel. On May 20, 7:38 am, outsource lucas outsourcelu...@gmail.com wrote: Hi all, I am still quite new to GWT. If I wish to make resize-able

Animated PNG

2010-06-19 Thread Sean
I'm trying to figure out the best way to do an animated png. Say I have a set of .png's named circle_00.png to circle_30.png and I want to animate them. I can do an animation that for every step loads the next circle and sets the image to that. However, since we know ahead of time, if you want

Woes of ClientBundle +IE

2010-06-29 Thread Sean
I created a widget that consists of an Absolute Panel and two images. Both images are applied from a different ClientBundle. Both images are added to the Absolute Panel with one on top of the other. The base image, which is one of 32 in a Client Bundle is shown to the user. The second one starts

Re: Anyone finds Contacts2 confusing?

2010-06-29 Thread Sean
I think in general MVP is always going to be very wordy. There's a ton of abstraction going on so that several developers can work on the same app all at different levels and as long as the interfaces remain intact, they won't step on each other's toes. I'm a single developer working on my own

Re: Woes of ClientBundle +IE

2010-07-02 Thread Sean
to get it to work as intended. On Jun 29, 6:43 pm, mdwarne mike.wa...@gmail.com wrote: Or.. Your click Handler can remove the image from the panel,  and replace it using a new one at the same coordinates. So you only add one image to the panel at a time.. Mike. On Jun 29, 1:58 am, Sean

Re: onSuccess() return value other than void?

2010-07-02 Thread Sean
Yeah, it takes a while to start thinking Asynchronously. But Andreas has the right of it. You no longer think of it as call myMethod() to return the ArrayListString; you have to think of it is: 1) What do I want my user to do to request the data. (Or my program, like on start up you want the

Re: how to update database, when a row a deleted in the smartGwt ListGrid

2010-07-02 Thread Sean
You have to connect to your server (via RPC for example) and submit a DELETE query where the row is equal to what was in the listGrid. On Jul 2, 3:03 am, GWT Groups new.ankitj...@gmail.com wrote: Hello Friends... Now i need your help.. I am working on SmartGwt Expendable Grid...I am using

Can't install gwt plugin!

2010-07-07 Thread Sean
'org.eclipse.wst.sse.ui 0.0.0' but it could not be found Anyone have any ideas? Thanks Sean -- 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

Re: Best way to style every other item?

2010-07-07 Thread Sean
I would extend Grid or Vertical Panel and on add or insert, update the CSS of the new element (Cell or VP Widget) to a questions-odd or questions-even. Removing would cause you to remove the widget, then update all the CSS of the ones below the removed question. On Jul 6, 5:07 pm, Brett Thomas

Re: Callback working but variable not initialized??

2010-07-08 Thread Sean
You're running into an async problem. The call back happens asynchronusly, meaning, just because you kick off the RPC service does not mean that designStrings will have a value in it before you execute the code after you kick off the RPC. Get rid of anything that uses designStrings outside of

Re: How can I formulate the given problem in GWT context

2010-07-12 Thread Sean
This sounds like you would have one module and just different panels. I tend to go a very Google route and have a login panel in the Upper right hand side, and when they login I have the main panel have the correct widgets displayed. So, I would start with a DockPanel or DockLayoutPanel, put the

Re: DisclosurePanel and arrows

2010-07-13 Thread Sean
Those are images, and you can set them in the Constructor by using http://google-web-toolkit.googlecode.com/svn/javadoc/1.6/com/google/gwt/user/client/ui/DisclosurePanelImages.html On Jul 13, 5:34 am, rlebisse rlebo...@gmail.com wrote: Hello, I've created a DisclosurePanel into my GWT

Re: Testing basic app with RPC on web

2010-07-14 Thread Sean
The one thing I've found useful is to make sure normal Servlets work first. You can get some test ones from TomCat's download I believe. I say this because I found out with my specific web provider that in order for a servlet to work it had to have servlet in the path name. So I couldn't set an

Re: GWT - Sending Email Tutorial

2010-07-30 Thread Sean
One thing to note is, if you're not using AppEngine, make sure NONE of its jars are in your war file. They conflict with JAVA Mail and you will get odd errors. On Jul 30, 12:47 pm, Subhrajyoti Moitra subhrajyo...@gmail.com wrote: u can use GWT RPC to send all the user entered data(from UI) to

More woes with IE + Client(Image) Bundles

2010-08-11 Thread Sean
I have a widget that dynamically makes medals. What it does is takes the place they are in (1st,2nd...) and gets the right color background medal from a ClientBundle, then using the same Client Bundle it creates the number from the ClientBundle, which has the #'s 0-9 in it. If it's 10, it grabs 1

Re: display result of ListString from server side method into TabPanel

2010-08-19 Thread Sean
You're going to want to use an RPC to get the ListString from the server. Then in your callback function, you go through the List and for each String, add it to whatever widget you want. On Aug 19, 4:19 am, ichi ichi8...@gmail.com wrote: Hai all, I've been looking for a way to display result

Re: App does not display in IE 7

2010-08-23 Thread Sean
GWT works with IE for the most part. It has some serious trouble with images in my experiences. The new ImageResources are just flat out broken in IE sadly. Either they look like crap or you have to use the Deprecated ImageBundles. I'm not sure why your site isn't working at all in IE7 though.

Re: Grid column added at run time

2010-08-30 Thread Sean
http://google-web-toolkit.googlecode.com/svn/javadoc/1.5/com/google/gwt/user/client/ui/Grid.html Look at the resize columns function. On Aug 30, 1:49 am, abhijeet abhijeetsuryawanshi1...@gmail.com wrote: Dear All, Is there any event using which I can get new column added at run time ??/ --

Re: GWT Database

2010-09-01 Thread Sean
GWT is a client side language. It requests from the server information. This can be done in many different ways. RPC's were already mentioned, which lets JAVA (client side) talk to JAVA server side. Any Database, like PostGres that JAVA can talk to can also be used. However, GWT can also request

Re: Development Mode performance with Chrome

2010-09-16 Thread Sean
I'm not sure if this deserves it's own post either, but I can't stand using Chrome in dev mode because when Debugging Chrome constantly informs me that the plugin has stopped responding and do I want to kill it. Is there anyway to say Don't Tell Me Again for the rest of this page's session? Or for

Re: Can I Cast a ResultSet to an ArrayList/DTO?

2010-01-12 Thread Sean
No, there isn't a way to do that. In the great scheme of things, cycling through hundreds of items twice, isn't that big of a time sink. If it's taking too long from request to display, think about cutting up your query to only get say, 50 items. Display those and only grab the next 50 when

  1   2   3   >