Re: UiBinder Internationalization - Search/Find Non-Internationalized Strings?

2011-05-30 Thread spierce7
Thank you very much. I'll look into it. On May 30, 4:05 am, Jānis Ābele wrote: > Look athttp://code.google.com/p/gwt-platform/wiki/MergeLocale, it does what > you want. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this grou

UiBinder Internationalization - Search/Find Non-Internationalized Strings?

2011-05-27 Thread spierce7
Is there a fast way to find non-internationalized strings/attributes in GWT? I have way to many ui binder files to search through by hand. Has someone found a creative way to automatically find them? -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit

Re: UiBinder - Add Mouse Handler to Panel or Grid

2010-10-12 Thread spierce7
> > > > > On Sun, Oct 10, 2010 at 5:00 PM, spierce7 wrote: > > I can't find a way to add a Mouse Handler to a GWT Panel or a Grid > > while using UiBinder. > > > I basically need a way that I can detect the following over a Grid: > > 1. Detect wha

UiBinder - Add Mouse Handler to Panel or Grid

2010-10-10 Thread spierce7
I can't find a way to add a Mouse Handler to a GWT Panel or a Grid while using UiBinder. I basically need a way that I can detect the following over a Grid: 1. Detect what cell the event is happening in. 2. Detect Mouse Up Event 3. Detect Mouse Down Event 4. Detect Mouse Out Event 5. Detect Mouse

Re: how to handle mouseOver event for FlexTable

2010-08-18 Thread spierce7
This code is from my class that extends Grid: public GridMouseHandler gridMouseHandler = new GridMouseHandler(this); Later on in the workings of one of the functions I add my mouse handlers. For grids or flex tables they must currently be implemented as dom handlers: addDomHandler

Storing Session ID in cookie, and then what?

2010-08-17 Thread spierce7
Hey, I'm currently making a site that has my own logins that I'm making (I know Google provides something, but I need my own login system), and I've been trying to figure out sessions for quite a while now. I've found a few tutorials, and one of the sites that I was reading is http://code.google.c

Re: Generate Random String

2010-08-17 Thread spierce7
ed; take your > pick.  The first link returned from that search has several > suggestions: > > http://stackoverflow.com/questions/41107/how-to-generate-a-random-alp... > > On Aug 16, 9:05 pm, spierce7 wrote: > > > What would be the best way to generate a random string in GW

Generate Random String

2010-08-16 Thread spierce7
What would be the best way to generate a random string in GWT with no slashes (/ or \), preferably just capitol letters and numbers. How would I do this? I'm surprised I can't turn up any information in searches. I'm looking to do this Server Side, meaning in java, rather than javascript. Thanks!

Acris Security and App Engine

2010-08-13 Thread spierce7
I've been trying to find out more information about sessions in GWT, as I couldn't figure out how to get them to work, and something that I stumbled across is Acris, which has a Security implementation. I've been reading about it and I can't find detailed information on how to use maven to setup a

Re: Hosting Entire Website on AppEngine? Integrating GWT into your website?

2010-08-10 Thread spierce7
o the default version when you are ready. > > Joe > > On Aug 10, 9:22 am, spierce7 wrote: > > > > > Joe, > > > Thanks for your fast reply. I figured you'd have you use google's > > database solution, but I thought it was called datastore. Either wa

UIBinder + DOMHandler?

2010-08-10 Thread spierce7
Hey guys, I know that UIBinder disables DOM Events, but I have an application that uses DOM Handlers in order to tell when a mouse up event, or mouse over event has taken place on my grid, and what cell it took place with. The issue is that since UIBinder disables DOM Events, I can't get my DOM han

Re: Hosting Entire Website on AppEngine? Integrating GWT into your website?

2010-08-10 Thread spierce7
like Apache can > do that as your GWT application will be compiled to static recources > to be served.  You will still need servlets or some other mechanism > for data access - I use servlets with RPC calls (http:// > code.google.com/webtoolkit/doc/1.6/DevGuideServerCommunication.html) >

Hosting Entire Website on AppEngine? Integrating GWT into your website?

2010-08-10 Thread spierce7
There isn't any way to host an entire website on AppEngine is there? It doesn't seem like it, I just thought I'd ask. So if that's the case, how am I supposed to integrate GWT into my application? an iFrame? Does GWT have any write-ups about this? What if I need the rest of my website to have acces

Re: GWT Popup Menu - Close on losing focus

2010-08-09 Thread spierce7
Are you wanting it to close when you lose focus, or simply when your mouse exits the panel? In my mind, the popup would lose "focus" when you actually click outside of the popup, rather than just moving the mouse out of it. I'm going to address the question in regards to your mouse exiting the pane

Re: Cell click events for incubator's FixedWidthGrid

2010-08-09 Thread spierce7
Are you only wanting to tell if a cell was clicked, or are you wanting to use specifics, such as the MouseUpHandler, MouseOverHandler, etc.? If you are using the Grid and all you want to do is tell which cell was clicked, Grid has a function called addClickHandler() (only works with the click hand

Re: bug in Animation class

2010-08-09 Thread spierce7
I'm going to be delving into the animation world in the next few weeks. Thanks very much for this. I'll try to keep this in mind if I have any issues. On Aug 6, 11:24 am, Michael wrote: > Hi, > > I didn't see a place to post bugs, so I am submitting it to the group. > > I've been working with GWT

Re: onModuleLoad() Before Page Load

2010-08-09 Thread spierce7
I'm not familiar with a lot of the things that you are using, however GWT has a method that it calls after the widget that the method is attached to is loaded. It's called onLoad(). Typically, when I've used it in the past, it's because I was extending a widget, say a Grid, and then I would overrid

Re: HTML Table

2010-08-09 Thread spierce7
Why are you doing HTMLTable table = new Grid(rows, 2);? Try doing Grid table = new Grid(rows,2); or HTMLTable table = new HTMLTable(rows, 2); (assuming syntax for HTMLTable) On Aug 9, 3:25 am, Sanjay Jain wrote: > Hi to all > I am using  HTML table, and for setting title of the table I am using >

Exception while dispatching incoming RPC call Object Manager has been closed (repost)

2010-08-09 Thread spierce7
Hey, I've been trying to get my RPC Call to AppEngine to work since last Wed, with no luck. My issue now seems to be with my query. I'm willing to post any code needed, but I just want to get this working, as this has completely halted me on any further progress on my app. Everything looks like it

Exception while dispatching incoming RPC call Object Manager has been closed

2010-08-08 Thread spierce7
Hey, I've been trying to get my RPC Call to AppEngine to work since last Wed, with no luck. My issue now seems to be with my query. I'm willing to post any code needed, but I just want to get this working, as this has completely halted me on any further progress on my app. Everything looks like it

Worth Upgrading to Eclipse Helios?

2010-08-06 Thread spierce7
Is it worth upgrading to Eclipse Helios? It sounds like some people are having some issues with it. Does not having Helios have anything to do with why I haven't been able to upgrade through the natural upgrade feature in Eclipse to 2.04 GWT? -- You received this message because you are subscrib

Re: How to use gwt to synchronize outlook to get the appoitments of calendar

2010-08-06 Thread spierce7
Your talking about a client side program that goes into the users system and pulls data? On Aug 6, 12:52 pm, victor QIN wrote: > Hello, > >    I want to use gwt to connect with outlook and get the appointments > of outlook. Is there any api for that? Thanks a lot. -- You received this message b

Error Doing RPC Call with my own return type: org.datanucleus.exceptions.ClassNotResolvedException

2010-08-06 Thread spierce7
Hey, so I can save data to app engine in an entity of type "PersistentShift", a class I made to save shift information. I've got 2 objects I'm saving within the class. Both are Date objects. One is startDate, one is endDate. I wanted to be able to query the server, and have a return type of Persist

Re: uibinder and css

2010-08-06 Thread spierce7
I hope this helps: http://code.google.com/webtoolkit/doc/latest/DevGuideUiBinder.html#Hello_Stylish_World Look at the Hello Stylish World Example. Good luck! On Aug 6, 9:38 am, Thomas Van Driessche wrote: > Hi, > > I have a question on using css in gwt. > > I know you can give the component a

Re: Database and GWT

2010-08-06 Thread spierce7
Why does no one want to use AppEngine? On Aug 5, 5:56 pm, Diego Venuzka wrote: > Hi! > After some hours without sleep to solve my compilation problem, i stop in > another problem. I'll need to insert data in database, and how GWT can help > with this? Or i can insert using the "tradicional method

Re: add mouse handlers for document body?

2010-08-06 Thread spierce7
What do you mean by document body? You might want to look into a DOMHandler. That's how I got mouse move handlers to work on my grid. Grid's don't have an obvious method that allows you to add a MouseMoveHandler like a lot of other things do (grids only have addMouseClickHandler). I'd take a look

Re: Please help - GWT application will not load in IE!

2010-08-06 Thread spierce7
I hate issues like this. Unfortunately, particularly since GWT is young, I've gotten something working in one browser, only to find it doesn't work in another browser. Typically I just find a more common way of going through something. What I'd recommend is (although it's time consuming), is to co

Transferring data from client to server: Do extra methods add more information that is sent to the server?

2010-08-06 Thread spierce7
If I'm transferring an object that has some persistent data in it to be saved on the server, from the client to the server (or vice versa), does me having extra methods in the object, increase the amount of data transferred between the server and the client? What about extra variables that are not

Re: ExceptionInInitializerError during an RPC call.

2010-08-05 Thread spierce7
Nevermind. Someone helped me figure this out. The problem was that my new class that was in the shared package was extending VerticalPanel, a non-serializable object. Obviously an issue. On Aug 5, 8:42 pm, spierce7 wrote: > I'm getting an error while trying to save an object to the

Re: Any Good GWT Photo Uploaders?

2010-08-05 Thread spierce7
I don't think you would upload 150 files simultaneously. I think it would probably be faster to do 2-4 at a time. I get that idea, because torrent programs typically try to limit downloads to 3-5 simultaneous downloads. Once you establish a lot of connections, it seems like it might slow bandwidth

Re: MacBook ok for GWT development?

2010-08-05 Thread spierce7
I have the i7 15 inch macbook. It's a bit much just for programming to be honest. One of the i5's would be fine, or even a used 2.8 Ghz Core 2 Duo off craigslist. What's your current processor, and why do you feel it's "unbearably slow"? My i7 barely reaches 40% when I do anything, but maybe that's

ExceptionInInitializerError during an RPC call.

2010-08-05 Thread spierce7
I'm getting an error while trying to save an object to the database. I'm keeping it simple. I'm just saving an event with a key, a start date, and an end date. I had the ability to save an event to the server working with an Event class on the server that was @PersistenceCapable, and an Event class

Re: AE / GWT Newb: How to do RPC Call with my own return type?

2010-08-04 Thread spierce7
lizable, and have an > empty constructor at the minimum. As with all serialized objects, all > it's members need to be serializable. If your using java.util.Date, > you should be fine. > > Tom > > On Aug 3, 7:14 pm, spierce7 wrote: > > > > > Hey guys, I

AE / GWT Newb: How to do RPC Call with my own return type?

2010-08-03 Thread spierce7
Hey guys, I've been mess making an app for a while now, and I've finally got something that is able to save an entity on the server. That entity (to keep it simple) is of type Event. It has 2 Date objects: startDate and endDate. I understand how to do queries and what not, but what I found my progr

Error using my own widgets with UIBinder

2010-07-04 Thread spierce7
Hey, I'm getting an error using my own widgets in UIBinder. In this I'm using the DockLayoutPanel, and everything works fine until I swap the Label that everything was working with in with my own widget, WeeklyHeader. I'm getting the following error: [ERROR] [scheduler] Unable to load module entr

Re: Error Using My Own Widgets in UIBinder

2010-06-27 Thread spierce7
{ private static SchedulerUIUiBinder uiBinder = GWT .create(SchedulerUIUiBinder.class); interface SchedulerUIUiBinder extends UiBinder { } } On Jun 27, 7:07 am, Thomas Broyer wrote: > On 27 juin, 00:16, spierce7 wrote: > > > > >

Error Using My Own Widgets in UIBinder

2010-06-26 Thread spierce7
Hey, I'm trying to convert my layout to UI Binder because my current layout is a bit laggy. It's giving me an error though: "[ERROR] [scheduler] In , must contain a widget, but found " I read the first 3/4 of what's on http://code.google.com/webtoolkit/doc/latest/DevGuideUiBinder.html but can't

Re: UIBinder Benefits?

2010-06-20 Thread spierce7
thanks :-) On Jun 20, 9:39 pm, Jaroslav Záruba wrote: > http://code.google.com/webtoolkit/doc/latest/DevGuideUiBinder.html > > I think you will have idea of the benefits once you start reading that. :) > > On Mon, Jun 21, 2010 at 3:23 AM, spierce7 wrote: > > Does using the

UIBinder Benefits?

2010-06-20 Thread spierce7
Does using the UI Binder provide any benefits? I watched some of the I/ O conference, and it seemed like they made reference that the UI Binder using the browsers native rendering engine (or something like that), and it being a lot faster, but they didn't really specify whether that was the layout

Get Width of Browser Scroll Bar?

2010-06-19 Thread spierce7
Is there a way to get the width of the scroll bar for the browser? -- 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 goo

Needs Scroll Panel and Resize Help

2010-06-19 Thread spierce7
Hey, I'm trying to make a program that is very similar to Google Calendar. One of the things I'm currently trying to implement, is I want the top line in the grid to maintain stationary, while the rest of the calendar is scrollable (this way the dates over the columns are always visible. So I broke

Re: Stop Cell Selections in a Grid

2010-06-17 Thread spierce7
I was playing around with the CSS option, and it doesn't work in IE. I need something that works in all major browsers. -- 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.co

Stop Cell Selections in a Grid

2010-06-17 Thread spierce7
Hey, I have a grid where I have some click and drag features on, but the problem is whenever I drag, the grid will select multiple rows of cells in the grid. How can I keep this from happening, besides using the css select option: ".notclickable { cursor: default; user-select: none; -moz-user-sele

Re: Get today's date, and the first day of this week's date?

2010-06-08 Thread spierce7
Guys, thank you so much for your replies! I've got my program doing what I needed it to :-) Thank you very much! Lothar, your code works (at least for the current date) : DateTimeConstants constants = LocaleInfo.getCurrentLocale().getDateTimeConstants(); int firstDay = Integer.parseInt(constants.f

Re: Adding event handler to the document

2010-06-08 Thread spierce7
I'd be interested to know this as well. Something like this isn't possible with a click handler, but perhaps with a keypress handler? On Jun 8, 4:54 pm, Raziel wrote: > What's the best way to add an event handler (for example for keyboard > events) to the entire document? > > I need something mor

Get today's date, and the first day of this week's date?

2010-06-08 Thread spierce7
Hey guys, I just found out that the Java Calendar class isn't compatible with GWT (Assumed it was since Date was). I'm a Java newb and spent a few hours figuring out how to do what I wanted to do with the Calendar class, and I'm clueless how to do this with GWT, so any help would be appreciated. 1

How to not allow users to select something, say a grid?

2010-06-05 Thread spierce7
I've got a Grid with click handlers inside of an Absolute Panel. When I'm clicking the grid to trigger some of the events, particularly with drag events, I've noticed that different parts of my grid are selected/ highlighted. Is there a way to control this and turn this off for different widgets? I

Re: Touchscreen laptops - access touch events?

2010-06-05 Thread spierce7
I don't think there is a way to access touch events in and of themselves. Touch screens are just simply another way of controlling the mouse for the computer. In terms of phones, when they touch a link, its equivalent to them clicking the link. Basically what I'm saying is that a touch event should

Get Grid HTML objects for Cells within a Grid so that I can add Mouse/ClickHandlers?

2010-06-03 Thread spierce7
Hey, I need to be able to have events within a grid for mouse overs, mouse ups, etc for individual cells on a grid and since it seems that I can't add a click handler for mouse overs etc for the whole grid, I'd like to be able to get at the individual HTML objects for cells, or an html object that'

How do I detect Mouse Up, Mouse Out, Mouse Over, etc on Grid Cells?

2010-06-02 Thread spierce7
I need to be able to do this efficiently in a 50X8 Grid. I need it for the individual cells within the grid. It seems that all I can get to work on my grid is a simple click handler. Grid.addClickHandler(this); and then whenever a click event occurs (a click down and then a click up in the same ce

Re: Dialog Box Dragging?

2010-06-01 Thread spierce7
This is probably not the best way, but you could try the dnd library, and set up the message box as dragable via that library, and then that wouldn't be able to happen possibly. http://code.google.com/p/gwt-dnd/ The examples show how to do it pretty well. You wouldn't need anything too advanced e

Re: Need a way to get width of each column in a Grid

2010-05-31 Thread spierce7
e the borders were set to 0, and the result I got was -3. So there is slight rounding going on, which is why I found the getOffsetLeft method of Element so useful since its more accurate for me to get exactly where something is placed. Best of luck! On May 31, 10:33 pm, spierce7 wrote: > I'm t

Need a way to get width of each column in a Grid

2010-05-31 Thread spierce7
I'm trying to find a way to get the specific width of each column individually within a grid. Height isn't as important, but I wouldn't mind knowing that either. I don't need the table total width, but rather specific columns. Getting the absolute location of a cell, column, or row might also work

Re: Add a Widget into/onto Grid without resizing Grid Cell/Column

2010-05-30 Thread spierce7
Anyone? Any thoughts? On May 27, 10:51 am, spierce7 wrote: > Hey, I'm making a calendar-like application, and right now I'm just > messing around with different options. One of the things I absolutely > need is to be able to place a group of widgets/panel on a panel on or

Add a Widget into/onto Grid without resizing Grid Cell/Column

2010-05-27 Thread spierce7
Hey, I'm making a calendar-like application, and right now I'm just messing around with different options. One of the things I absolutely need is to be able to place a group of widgets/panel on a panel on or over a table/grid that I've set up with click listeners, and have the Grid not resize to ac

Re: onLoad?

2010-05-27 Thread spierce7
I see, thank you very much for your explanation! That explains a lot. Where did you get the java doc with that explanation? Maybe I should take a look see at that! On May 27, 4:23 am, Thomas Broyer wrote: > On 27 mai, 06:43, spierce7 wrote: > > > Hey guys, I'm creating a c

onLoad?

2010-05-26 Thread spierce7
Hey guys, I'm creating a class that extends Label, and for some reason whenever I create an instance of it, it doesn't load the onLoad() class when it's instantiated. I've got it set up the exact same way I have a class that extends grid, that properly uses onLoad, but for some reason this isn't.

Add a Widget over a grid that extends over multiple cells?

2009-12-29 Thread spierce7
Hey, in your opinion is it possible to add a panel over top of a grid that extends over multiple cells? My goal is to have the panel snap to the grid. If you don't think it's possible, please let me know too. Thanks! -- You received this message because you are subscribed to the Google Groups "G

Can't figure out how to edit a Grid's border

2009-12-28 Thread spierce7
Alright, so I'm not sure how to properly figure out how to do this. I've been trying to figure out how to do it for a few hours now without much luck. I've tried playing with some CSS settings, and then using the grid.setBorderWidth() method, but nothing seems to work. The space in-between the cel

Re: DropZap web demo built using GWT

2009-12-28 Thread spierce7
nice game! I found it pretty difficult though. I couldn't get halfway through the second level. On Dec 28, 7:35 pm, "amich...@gmail.com" wrote: > Hello, > > Check it out: > > http://dropzap.appspot.com > > Amir -- You received this message because you are subscribed to the Google Groups "Googl

Re: GWT Noob: Click Handlers and Grid/Flex Table

2009-12-27 Thread spierce7
eally love input on questions 2 and 3. :-) On Dec 27, 10:00 pm, spierce7 wrote: > Alright, so I am trying for the life of me to understand how to do > this. I'm a GWT noob at the moment, and I'm really struggling to > understand how to fully implement clickhandlers in a grid or fl

GWT Noob: Click Handlers and Grid/Flex Table

2009-12-27 Thread spierce7
Alright, so I am trying for the life of me to understand how to do this. I'm a GWT noob at the moment, and I'm really struggling to understand how to fully implement clickhandlers in a grid or flex table to figure out where they are clicking within the grid. Apparently from what I can see so far is

How can I work with other people's code in Eclipse?

2009-12-24 Thread spierce7
Hey guys, I've been trying for the longest time now to find a way to work with other peoples open source projects in eclipse. I've got their project in a jar file, and I'm trying to find a way to pull it into eclipse and make some modifications. Any help would be much appreciated! Thanks! ~Scott

How to open and edit a library in Eclipse?

2009-10-07 Thread spierce7
Hey, I've been wondering the best way to do this for a while. Now it's something I need to do. I need to be able to get at the source code, and specifically edit this: http://code.google.com/p/ftr-gwt-library/ What is the best way to go about editing it with eclipse? Ideally I'd like to have the

Re: Need to use GWT to make a program similar to Google Calendar, How would you do it?

2009-10-07 Thread spierce7
w that should help you > > get started on design as well as drag and drop (DND) implementation. > > > Ray Ryan's talk regarding Model View Presenter design: > >http://google.latest.gwt-web-calendar.appspot.com/ > > > Fred Sauer's GWT compatible DND library: > &g

Re: Need to use GWT to make a program similar to Google Calendar, How would you do it?

2009-10-06 Thread spierce7
Anyone? --~--~-~--~~~---~--~~ 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@googlegroups.com To unsubscribe from this group, send email to google-web-to

Need to use GWT to make a program similar to Google Calendar, How would you do it?

2009-10-05 Thread spierce7
I found this online: http://google.latest.gwt-web-calendar.appspot.com/ Again, my goal is to make something similar to that, but something that's more customized to my needs. Instead of editing his code, I'm just going to make my own so I'll learn during the process as well. I'm reasonably experi

Is Google Web Toolkit for me?

2009-09-02 Thread spierce7
Hey, I'm looking to make a webapp, and right now I'm really intrigued by what the Google Web Toolkit offers. I'm familiar with PHP, MySQL, HTML, and CSS from a few years ago, and I've taken a few Java classes a few years back. Right now I'm trying to make a Web App that is very similar to a calend