Re: Listening for ScrollBars from Browsers :: Dynamic Resize

2012-03-29 Thread Thomas Broyer
You could set an overflow-y:scroll CSS property on the html element to 
force the scrollbar to always appear: 
http://www.mediacollege.com/internet/css/scroll-always.html
Otherwise, well, periodically check the size of the viewport?

On Wednesday, March 28, 2012 8:44:03 PM UTC+2, Ashton Thomas wrote:

 I have a layout that dynamically resizes via:
 Window.addResizeHandler(new ResizeHandler() {


 However, this is NOT fired when the browsers adds the scroll bars once the 
 UI has dynamically added content to extend the browser's screen

 So my app is fine when it first loads and the content doesn't go below the 
 viewport; however, once the content goes below the browsers automatically 
 adds its scrollbars but a resize event is not fired.

 This is a problem because the width of the scrollbars also causes the 
 bottom horizontal scrollbars to show.


 I appreciate your thoughts! Thanks!





-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/CDEwiuSfzUgJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: GMail authentication with GWT + GAE - works in development but fails in production

2012-03-29 Thread Thomas Broyer
I don't know how Google/AppEngine (nothing to do with GMail) works exactly, 
but couldn't you make it redirect to some other page containing a script 
that talks to the window.opener and closes the window?

On Wednesday, March 28, 2012 10:26:08 PM UTC+2, Deepak Singh wrote:

 Hi Thomas,

 I can not use Window.open() because after successful login, Gmail 
 redirects user to the same window and there is no option to close the 
 window automatically after login.



 On Wed, Mar 28, 2012 at 10:11 PM, Thomas Broyer  wrote:

 Window.open() ?


 On Wednesday, March 28, 2012 6:15:47 PM UTC+2, Deepak Singh wrote:

 The reason is that Gmail does not allow to be opened in Frame/IFrame. 
 When i replace it with browser window, it works.

 But i dont want my page to be refreshed, so any solution to avoid 
 reloading the window in case of Gmail authentication ?

 Thanks
 Deepak

 On Wed, Mar 28, 2012 at 7:04 AM, Joseph Lust wrote:

 Deepak,

 Can you run your app in DevMode but using the remote server option so 
 that calls are being sent out to the actual Google APIs? I find it useful 
 as you can step through and debug the production code in Eclipse, but the 
 backend code is in production.

 Just disable the *built in server* option, and in the *GWT* tab and *URL 
 *field put the full remote path where you normally see MyApp.html. Of 
 course the code versions in each side my be identical or you can get RPC 
 errors.


 Sincerely,
 Joseph

 -- 
 You received this message because you are subscribed to the Google 
 Groups Google Web Toolkit group.
 To view this discussion on the web visit https://groups.google.com/d/**
 msg/google-web-toolkit/-/**bIgyQw2-DWAJhttps://groups.google.com/d/msg/google-web-toolkit/-/bIgyQw2-DWAJ
 .
 To post to this group, send email to google-web-toolkit@**
 googlegroups.com google-web-toolkit@googlegroups.com.
 To unsubscribe from this group, send email to google-web-toolkit+**
 unsubscr...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at http://groups.google.com/**
 group/google-web-toolkit?hl=enhttp://groups.google.com/group/google-web-toolkit?hl=en
 **.




 -- 
 Deepak Singh
  
  -- 
 You received this message because you are subscribed to the Google Groups 
 Google Web Toolkit group.
 To view this discussion on the web visit 
 https://groups.google.com/d/msg/google-web-toolkit/-/mAAXGo4Y6F4J.

 To post to this group, send email to google-web-toolkit@googlegroups.com.
 To unsubscribe from this group, send email to 
 google-web-toolkit+unsubscr...@googlegroups.com.
 For more options, visit this group at 
 http://groups.google.com/group/google-web-toolkit?hl=en.




 -- 
 Deepak Singh
  

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/vUeZc2G5we4J.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Web app design with GWT

2012-03-29 Thread Mike Dee
I've been working with GWT for 6+ months now.  I don't have much
interaction with other GWT developers.  Thankfully, this group has
been helpful in getting up to speed.  I've built many traditionally
designed web apps (JSP, PHP, etc). With GWT the way I design a web app
is a little different.  Would appreciate feedback.

http://mdichi.wordpress.com/2012/03/29/web-app-design-with-google-web-toolkit-gwt/

-- 
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-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Listening for ScrollBars from Browsers :: Dynamic Resize

2012-03-29 Thread Jens
Not sure if it could help you, but you can detect if a scroll bar is 
visible by checking ScrollPanel.getMaximumVerticalScrollPosition(). If its 
greater than 0 the scroll bar is visible.

So while adding your content into the ScrollPanel you could constantly 
check this value and if its greater than 0 you could maybe schedule a 
finally or deferred command that calls layout.onResize() manually?

I have done something similar for a table like widget where I wanted to 
reposition a right aligned, fixed width column header when the vertical 
scrollbar of the table's content area gets visible. The scrollbar has 
pushed the contents to the left so I had to reposition the column header 
scrollbar-width pixels to the left to keep header + column visually in 
sync.

-- J.


Am Mittwoch, 28. März 2012 20:44:03 UTC+2 schrieb Ashton Thomas:

 I have a layout that dynamically resizes via:
 Window.addResizeHandler(new ResizeHandler() {


 However, this is NOT fired when the browsers adds the scroll bars once the 
 UI has dynamically added content to extend the browser's screen

 So my app is fine when it first loads and the content doesn't go below the 
 viewport; however, once the content goes below the browsers automatically 
 adds its scrollbars but a resize event is not fired.

 This is a problem because the width of the scrollbars also causes the 
 bottom horizontal scrollbars to show.


 I appreciate your thoughts! Thanks!





-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/iQLzOASyZZoJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Web app design with GWT

2012-03-29 Thread dodo dard
You confused me with word design as style :)
But is a good article

Bowie
=
www.html5bydemo.com

Le jeudi 29 mars 2012 09:52:54 UTC+2, Mike Dee a écrit :

 I've been working with GWT for 6+ months now.  I don't have much 
 interaction with other GWT developers.  Thankfully, this group has 
 been helpful in getting up to speed.  I've built many traditionally 
 designed web apps (JSP, PHP, etc). With GWT the way I design a web app 
 is a little different.  Would appreciate feedback. 


 http://mdichi.wordpress.com/2012/03/29/web-app-design-with-google-web-toolkit-gwt/
  


-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/vdijdja7HZoJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: How to get page state

2012-03-29 Thread dodo dard
To add another tutorial website www.html5bydemo.com :)
You can find webstorage there

Le jeudi 29 mars 2012 03:25:20 UTC+2, Michael Allan a écrit :

 Jens said:
  You don't have that many options if you have to reload your site:
  
  - store your state in the URL if possible (GWT's Place feature can help 
 you 
  do so, you don't have to use MVP/Activities)
  - store it using HTML 5 Web Storage (browser 
  support: http://caniuse.com/#search=web storage)
  - store it in cookies (only if you want to support IE6/7 and you can't 
  store the state in the URL).

 Here's an example of both Web Storage and cookies for persisting
 state: http://zelea.com/project/votorola/s/gwt/stage/Stage.java

 It's running here.  The black linkbar at the top uses it:
 http://zelea.com/w/User:Frank-FlippityNet/Sys/p/sandbox

 -- 
 Michael Allan

 Toronto, +1 416-699-9528
 http://zelea.com/



-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/spiAcwC5bQQJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: GWT + Vector Drawing Tools

2012-03-29 Thread Frank
I always use  http://code.google.com/p/gwt-graphics/ 
This uses SVG or VML on IE8 and older.

I believe Raphaël is more powerfull but I find the API of GWT-graphics 
better suited to a Java environment (with GWT-Raphaël the API is to much 
Javascript minded imo).

I don't know lib-gwt-svg but do remember that IE8 and older have NO support 
for SVG. And IE8 is still widely used.


Op dinsdag 27 maart 2012 17:06:51 UTC+2 schreef SigmaBlu het volgende:

 It does look interesting.  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-toolkit@googlegroups.com.
 To unsubscribe from this group, send email to 
 google-web-toolkit+unsubscr...@googlegroups.com.
 For more options, visit this group at 
 http://groups.google.com/group/google-web-toolkit?hl=en.




-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/vNs0ZkiP1zkJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: GWT Performance : Good or Bad ?

2012-03-29 Thread Frank
That should be *don't use GXT* I pressume...

Op woensdag 28 maart 2012 00:51:45 UTC+2 schreef Joseph Lust het volgende:

 My company just completed a very large intranet UI using GXT. The overall 
 lesson learned was *don't use GWT*. For the most part it was much slower 
 and the model used in GXT did not extend well to our MVP setup. Perhaps GXT 
 3 has fixed some of these issues, but we don't want to deploy a framework 
 that's still in beta.

 Sincerely,
 Joe


-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/2L6eMw7g2WAJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: DatePicker UTC

2012-03-29 Thread Thomas Lefort
To be more clear, I have a date which is 2012-03-29 at 01:00:00 UTC, if I 
do setDate(date) on the datepicker and if the user is based in the US, the 
date selected on the calendar will be the 2012-03-28, because it uses their 
local time. I want the calendar to show 2012-03-29 wherever the user is.


On Wednesday, 28 March 2012 22:07:39 UTC+2, Thomas Lefort wrote:

 I need the datepicker to render the date in UTC and not the local 
 format. Is there any simple way to do so?



-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/0A_WEwacv9sJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: DatePicker UTC

2012-03-29 Thread Kevin Jordan
http://code.google.com/p/gwt-traction/ (Look for UTCDateBox towards the 
bottom)
http://gwt-traction.googlecode.com/hg/demo/com.tractionsoftware.gwt.demo.utcdatebox.UTCDateBoxDemo/UTCDateBoxDemo.html
 
(Demo of it).

I created one based off of this for GXT and this should do what you want. 
 Although when I went to create a GXT version, I kept it so get/setValue 
used Date and not Long but did the timezone offset subtraction that this 
did.

On Wednesday, March 28, 2012 3:07:39 PM UTC-5, Thomas Lefort wrote:

 I need the datepicker to render the date in UTC and not the local 
 format. Is there any simple way to do so?



-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/joQfhQCm1uQJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: GWT + Vector Drawing Tools

2012-03-29 Thread Freddie Jefferson
Gentlemen,

Thanks for your input.  You all have made me increasingly aware of
libraries used with GWT allows me to draw shapes.  Many Thanks!

Frank,

Have you successfully used drag and drop or some other library with
GWT-Graphic?  Do you have any of your examples on-line?

Regards,
Sigma




   --
 You received this message because you are subscribed to the Google Groups
 Google Web Toolkit group.
 To view this discussion on the web visit
 https://groups.google.com/d/msg/google-web-toolkit/-/vNs0ZkiP1zkJ.

 To post to this group, send email to google-web-toolkit@googlegroups.com.
 To unsubscribe from this group, send email to
 google-web-toolkit+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/google-web-toolkit?hl=en.


-- 
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-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: GWT history handling library - give it a try

2012-03-29 Thread Kostya Kulagin
Thanks again

  Again good points, again thank you.
  Places are intended to descibe set of components on page but not their
  (components) state.

 No. Activities are a set of components on the page. A Place, by
 definition, describes the location within the app, which you can
 interpret as being the state of the app, thus the state of the
 activities (it's rather the other way around though: you navigate to some
 place, and activities will construct their state from the current place)
 Have a look there for more 
 details:http://tbroyer.posterous.com/gwt-21-places,http://tbroyer.posterous.com/gwt-21-places-part-iiand
 thentbroyer.posterous.com/gwt-21-activities

(Throwing away a question if an application does not use Places and
Activities but instead loads it components 'by hands' (there is no GWT
support for history))

Yes, this what I meant. I gave slightly incorrect description. Sorry.
Places are 'State' of a page, i.e. 'Place' in an application. This is
great.
Also correct that set of Activities will describe components for the
current Place. Let us leave notion of mayStop() feature of
Activities.
It is cool and it is actually applied if you change a *Place*.

But. You are in one Place in the application. You have a pager, for
example. What will you do in order to implement history (browser back-
forward) support for paging in this case?

For me personally: current page in URL is a *state* of some paginator
component managed by Activity. Not a new *Place*, correct?
So you'll have to have some functionality to write-read some params
for the paginator related to to current page. If you (nightmare!) have
2 paginators?
What you'll have to do to be assured that sub-params (or there is an
other way to do it?) in the browser history string does not intercept?

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-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: GWT history handling library - give it a try

2012-03-29 Thread Jens
The problem is that your (bookmarked) URLs will become useless if you 
change the implementation of your UI. If you, as mentioned in your wiki 
page, store opened/closed tree nodes in the URL, what happens if you switch 
to a flat table or a totally different custom widget? The previous URL is 
pretty much useless now.

Thats why you shouldn't say that each UI component has a URL state. Sure it 
has a state, but you don't want to bookmark that specific state. You want 
to bookmark WHAT the application in the current place presents the user. 
Thats in most cases totally independent on how you implement the UI and 
which components you use.
Example: http://domain.com/#/employee/5/details. This loads all employees, 
preselects the one with ID 5 and shows the details section of the employees 
data. No word about the used UI components in the URL. Got the idea?

-- J.

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/ZDt8TCIvqWsJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: GWT history handling library - give it a try

2012-03-29 Thread Thomas Broyer


On Thursday, March 29, 2012 5:14:28 PM UTC+2, Kostya Kulagin wrote:

 Yes, this what I meant. I gave slightly incorrect description. Sorry. 
 Places are 'State' of a page, i.e. 'Place' in an application. This is 
 great. 
 Also correct that set of Activities will describe components for the 
 current Place. Let us leave notion of mayStop() feature of 
 Activities. 
 It is cool and it is actually applied if you change a *Place*. 

 But. You are in one Place in the application. You have a pager, for 
 example. What will you do in order to implement history (browser back- 
 forward) support for paging in this case?


If you want your state to be bookmarkable, then you'll navigate to another 
place. What's wrong with that?
(and note that changing place does not necessarily mean starting *new* 
activities)
 

 For me personally: current page in URL is a *state* of some paginator 
 component managed by Activity. Not a new *Place*, correct?


No. If it's in the URL, it *locates* something (URL = Uniform Resource 
Locator; URI = Uniform Resource Identifier), so that you could send the 
link via mail or IM and *go to* that... place!

There are cases where you'd want entries in the browser history without 
changing the URL; for that GWT provides no support at all (Closure Library 
does, for instance; but you cannot mix history-without-url-changing and 
changing-url-to-reflect-app-state in the same app –I wonder how HTML5's 
pushState works without changing the URL–). But that's not what you're 
talking about here.

So you'll have to have some functionality to write-read some params 
 for the paginator related to to current page. If you (nightmare!) have 
 2 paginators?


Well, honestly, if you have to pagers *and* you want them to both create 
entries in the browser's history, you have a design issue!
 

 What you'll have to do to be assured that sub-params (or there is an 
 other way to do it?) in the browser history string does not intercept?


Create a specific Place that can hold those two parameters and navigate 
from place to place, changing only one value at a time?
If you want to decouple your pagers from the places then, well, abstract 
that out behind some navigator component that'll manage the places for 
you (e.g. moveSecondPager(2) would navigate to a place with the same value 
for the first pager and the value 2 for the second pager; the second 
pager doesn't need to know about that).

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/W-ESf1Wufq8J.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: does any Breedcrumb widget in gwt 2.4?

2012-03-29 Thread Derek
Unfortunately, the code relies on our homegrown MVP framework and GIN,
so it's not really designed to be copy and pasted whole.

Derek

On Mar 28, 10:50 am, tong123123 tong123...@gmail.com wrote:
 Oh, would you mind to share the code?







 On Wednesday, March 28, 2012 1:27:35 PM UTC+8, mukarev wrote:

  I didn't find a breadcrumb too. So I had to build one on my own

-- 
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-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: GWT Performance : Good or Bad ?

2012-03-29 Thread Joseph Lust
Oops, I meant don't use G*X*T. We've used pure GWT on another project with 
all bespoke widgets and despite a bleeding edge HTML5/SVG UI with tons of 
animations, data, and windows, the pure G*W*T examples runs circles around 
the other, simpler, G*X*T project. Sorry for the confusion, if there was 
any.

Sincerely,
Joe

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/9-8M9aoarnAJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Immediate required Sr Test Engineer for contract position in TN or GA

2012-03-29 Thread Gopal Sharma
Hi,

Hope you are doing great,

Immediate required Sr Test Engineer for contract position in TN or GA



Position: Sr Test Engineer

Location: TN or GA

Duration: 6 months

Client: Asurion

Rate: Market Rate



Qualifications

Bachelor’s degree and 10+ years relevant experience 3-5 years testing
Software Development Life Cycle (SDLC) management, or similar
experience 6 years experience in one or more of the following areas
(or combination thereof): Telecommunications industry, Insurance /
claims industry, Relevant IT Discipline 3-6 years software
development, system architecture, and/or system administration 3-5
years experience in automation testing using data-driven and
object-oriented processes 1-2 years experience developing software in
an object-oriented language Specific Knowledge/experience in several
of the following: Building Testing Scenarios from Requirements;
Requirements Review; Reading and using Use Cases; Developing Test
Scripts Expertise in Release Management and Testing processes required
Experience reporting testing results in a clear, detailed, and
analytical style based on fact-based metrics Skill in diagnosing and
solving complex problems and providing detailed technical analysis
Expertise in Structured Query Language (SQL) and relational database
structures Expert knowledge of system integration Ability to quickly
and accurately perform troubleshooting of existing test scripts
Proficient computer skills including common business applications such
as MS Windows and MS Office including Excel, Word and Access
Proficient in theory and principles of project management Superior
oral and written communication skills. Ability to exhibit a commanding
presence when necessary. Proven Ability to work in a team environment,
including geographically dispersed teams Exemplary track record for
meeting deliverable targets, and taking part in successful releases
Strong Resource planning and people management leadership Demonstrates
self-motivation  initiative Demonstrated ability to drive results and
service excellence Experience working under a variety of SDLC
methodologies including but not limited to, SCRUM, TDD, Extreme
Programming, Kanban and Waterfall Expert experience in automation
testing using data-driven and object-oriented processes Robust
experience developing software in an object-oriented language
Proficiency using the Mercury Suite of Testing Tools (WinRunner,
QuickTest Professional, Test Director, Quality Center, Load Runner,
BPT, PPM) required Superior knowledge of testing automation Specific
Knowledge/experience in all of the following: Visual Basic Scripting,
Software Development using OOD / OOP, Analysis, SQL Server 2000,
Data-driven Automation Testing Experience leading small teams
preferred Outstanding verbal and written communication skills
Excellent listening and interpersonal skills. Ability to handle
multiple assignments.



-- 
Thanks and regards,

Gopal

IDC Technologies, Inc.,1851 McCarthy Boulevard, Suite 116, Milpitas,
CA , USA, 95035

Direct:  408-457-9399 (Extn-2018) I Email:
gopal.sha...@idctechnologies.com I Yahoo IM: gopal_idc I Web:
www.idctechnologies.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@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Immediate required Business Analyst for contract position in Pittsburgh, PA

2012-03-29 Thread Gopal Sharma
Greetings!

Please help me on this with your available consultants.

Please reply to gopal.sha...@idctechnologies.com only



Immediate required Business Analyst for contract position in Pittsburgh, PA



Title: Business Analyst - Data Warehouse/ALM
Location: Pittsburgh, PA

JOB DESCRIPTION:

Business Analyst - Data Warehouse/ALM:  Extensive experience in data
warehousing projects.  Previous experience in data mapping.
Documentation of Functional requirements including data
transformations.  Proactively reach out to source systems to
understand their data and be able to articulate our data needs.
Develop requirements for the data needs of the system. Work with
source systems to capture nuances in their system and processing
environment. Understand current technical architecture to turn
business requirements into functional specifications. Work with
development team to understand requirements. Document and execute test
cases and scripts. Liaison with Enterprise Data Architecture group to
define data model.

Understanding of Treasury data needs and reporting for Liquidity,
Basel III, Capital Forecasting, Cash flow analysis, FTP etc.  Domain
Knowledge of Asset Liability management, Liquidity Risk, Interest Rate
Risk, Capital forecasting

Location: Pittsburgh, PA



Please provide your updated resume with below mentioned details;



Current Project:


Full Name:


Skype ID:


Current Location (City/State)


Contact #


Email


Visa Status:


Currently on a project:


Willingness to relocate across US:


Available to join from:


Rate:









Thanks  Regards,
Gopal

IDC Technologies, Inc.
1851 McCarthy Boulevard, Suite 116,Milpitas, CA, USA, 95035
Phone: 408-457-9399 Extn: 2018| Fax: 408-608-6088
Email: gopal.sha...@idctechnologies.com| Web: www.idctechnologies.com
Yahoo IM: gopal_idc

-- 
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-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Senior PeopleSoft HRMS --Baltimore,MD--6+MONTHS

2012-03-29 Thread vincent karoff
*Job Title :Senior PeopleSoft HRMS
LocationBaltimore,MD
Duration:6+MONTHS
*
*PeopleSoft HRMS 8.9 to 9.1 upgrade:
Need purely functional 9.1
Must have experience with PeopleSoft HRMS version 9.1
Experience in upgrades.  Going from 8.9 to 9.1 is preferred
Must have experience with Fit / Gap Analysis
Can work independently and lead project team in functional tasks as it
relates to the upgrade process
Experience in PeopleSoft HRMS HR, Benefits, Benefit Admin, Position
Management, North America Payroll is a must
Experience in writing functional specifications and testing scripts
Experience is functional set up and testing
Good communication skills and must be able to work with all levels*

*
Vincent Karoff
Voice: 203-983-9475
E-mail:vinc...@panzersolutions.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@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Immediate required Linux System Administrator for contract position in Detroit, MI

2012-03-29 Thread Gopal Sharma
Greetings!

Please help me on this with your available consultants.

Please reply to gopal.sha...@idctechnologies.com only


Immediate required Linux System Administrator for contract position in
Detroit, MI




Job Roles:  Solaris System Administrator

Location: Detroit, MI








Job Roles: Linux System Administrator

Linux System Administrator responsible for executing daily service
delivery of planning, organizing, evaluating, troubleshooting,
installing and tuning of multiple large Linux systems in a centralized
data center environment

Skills:

1.  Strong knowledge of OS fundaments of various Linux flavours
such as RHEL, SUSE.

2.  Package management using rpm, yum etc

3.  Experience in Software and Hardware RAIDs

4.  Experience writing scripts and procedures for day-to-day operations.

5.  Solid concepts on LVM, NFS, performance monitoring utilities
and other core UNIX commands.

6.  Preferably SAN experience in a multi-fabric, multi-path fiber
channel environment.

7.  Disaster recovery experience including data replication technologies.

8.  Experience writing scripts and procedures for day-to-day operations.

9.  Experience on Virtualization.

10.   Knowledge of IP tables and server securities

11.   Strong Networking fundamentals and interface configurations.

12.   User management and OS Hardening.

13.  Strong understanding and comprehension of ITIL fundamentals.







Job Description



1. Installs, configures, maintains and performs system integration
testing of Linux operating systems, related utilities and hardware.

2. Responsible for troubleshooting Linux based hardware and
software problems.

3. Monitors systems activities and fine tunes system parameters
and configuration to optimize performance and ensure security of
systems.

4. Performs capacity analysis, monitors and controls usage of disk space.

5. Develops procedures for routine admin including backup/restore,
shutdown  start-up.

6. Provides recommendations for improving the server environment,
such as capacity thresholds, security gap, patch levels and hardware
recalls.

7. Work with Command Centre, Service desk team for issue
resolution  problem management.

8. Strong verbal and written communication skills.

9. Strong analytical and problem-solving skills.

10.  Ability to effectively work on and prioritize multiple concurrent jobs.

11.  Self-motivation and team-player attitude.

Coordinate with service provider for issues and incidents related to
critical Server outages, SEV 1 issues and RCA.


 Experience Level E2 / E3 (5 to 8 Years / 8 to 12 Years)





Please provide your updated resume with below mentioned details;


CURRENT JOB TITLE


FULL NAME


CURRENT LOCATION


LEGAL STATUS IN US


PRIMARY CONTACT NUMBER


WILLING TO RELOCATE


BEST TIME TO CALL


AVAILABILITY


SALARY/RATE EXPECTATION


TOTAL IT EXPERIENCE


DATE OF BIRTH (MM/DD/)


YEAR OF GRADUATION (Bachelors)


YEAR ENTERED IN US (H1B’s Only)









Thanks  Regards,
Gopal

IDC Technologies, Inc.
1851 McCarthy Boulevard, Suite 116,Milpitas, CA, USA, 95035
Phone: 408-457-9399 Extn: 2018| Fax: 408-608-6088
Email: gopal.sha...@idctechnologies.com| Web: www.idctechnologies.com
Yahoo IM: gopal_idc

-- 
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-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: GWT + Vector Drawing Tools

2012-03-29 Thread Joseph Lust
Another vote here for going the way of SVG. With the little known SMIL 
animation standard, you can do some really amazing stuff through GWT, or 
just pure SVG if you like. We used lib-gwt-svg to interface with the SVG in 
my project. The results were pretty stunning, but it was an internal 
product that will never see the light of day, or I'd post some videos.  :(

Check out these examples on http://svg-wow.org/

Joe

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/Js2uyAxCovwJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Code Coverage : How to configure cobertura and selenium with Gwt Client project for code coverage

2012-03-29 Thread Joseph Lust
Dodo,

We get around that by setting unique id's on elements using a 'debugId' for 
components that need to be individually tested. This helps prevent making 
brittle tests that depend on a very long XPath that will break if any class 
is renames or div moved.

You can set them in the UiBinder as just debugId=value up to GWT 2.3, 
there after you need to programmaticly set them in the Java side.

Sincerely,
Joe

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/evYs4N0PhOwJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



GWT-RPC: encodedRequest cannot be empty

2012-03-29 Thread kishorpatel415
Hi,

We are using GWT 2.3. Our application is encountering the error
encodedRequest cannot be empty. Full stack trace below. This is an
intermittent error that occurs when making GWT-RPC calls.

Stack Trace:
Exception while dispatching incoming RPC call
java.lang.IllegalArgumentException: encodedRequest cannot be empty
at com.google.gwt.user.server.rpc.RPC.decodeRequest(RPC.java:229)
at
com.google.gwt.user.server.rpc.RemoteServiceServlet.processCall(RemoteServiceServlet.java:
206)
at
com.google.gwt.user.server.rpc.RemoteServiceServlet.processPost(RemoteServiceServlet.java:
248)
at
com.google.gwt.user.server.rpc.AbstractRemoteServiceServlet.doPost(AbstractRemoteServiceServlet.java:
62)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:754)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:847)

Client Environment
- Browser: Microsoft Internet Explorer 8
- Operating System: MS Windows 7

Server Environment
- App Server: Tomcat 7
- Operating System: MS Windows Server 2008

Please let me know if there are any work around or solutions
available. Thank you.

-- 
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-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Firefox not uploading files 500kb using gwtupload

2012-03-29 Thread eprice
I'm using gwtupload 0.6.4 and have run into the issue that when using
Firefox 9.0.1 (and other versions), in both dev mode and production
mode, the Form post() does not get called when the file to be uploaded
is  500kb.  I've searched around for information on this and found
references to max file upload size being 2MB, but not much else.

Does anyone have an idea on what the problem might be?  Uploads using
Chrome and IE 9 work fine.

-- 
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-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Error using abstract class uiBinder

2012-03-29 Thread Luis Costa
Hello,
I'm using GWT SDK 2.4.0 and I'm trying to create an abstract class ( 
AbstractContentView ) that will be extended by Content1.
AbstractContentView  will have common code and uiFilds (like buttons etc.)
Content1 will had himself to AbstractContentView using 
setContentWidget(this);
But I'm getting the following error:
[ERROR] Method 'previous' can not be bound. You probably missed 
ui:field='uiPrevious' in the template.
Can anyone please tell me what am I doing wrong?

Thanks,
Luis.

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/2M5hDn5TvJkJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

package com.client;

import com.google.gwt.core.client.GWT;
import com.google.gwt.event.dom.client.ClickEvent;
import com.google.gwt.uibinder.client.UiBinder;
import com.google.gwt.uibinder.client.UiField;
import com.google.gwt.uibinder.client.UiHandler;
import com.google.gwt.user.client.ui.Button;
import com.google.gwt.user.client.ui.Composite;
import com.google.gwt.user.client.ui.IsWidget;
import com.google.gwt.user.client.ui.SimplePanel;
import com.google.gwt.user.client.ui.Widget;

public abstract class AbstractContentView extends Composite {

	
	@UiField SimplePanel uiMain;
	
	@UiField Button uiPrevious;
	@UiField Button uiOk;
	@UiField Button uiNext;
	
	private static BaseContentViewUiBinder uiBinder = GWT
			.create(BaseContentViewUiBinder.class);

	interface BaseContentViewUiBinder extends UiBinderWidget, AbstractContentView {
	}

	public AbstractContentView() {
		initWidget(uiBinder.createAndBindUi(this));
	}

	
	public void setContentWidget(Widget widget){
		uiMain.add(widget);
	}
	
	public void setContentWidget(IsWidget widget){
		uiMain.add(widget);
	}


	@UiHandler(uiPrevious)
void previous(ClickEvent e) {
		onPrevious();
}

@UiHandler(uiOk)
void ok(ClickEvent e) {
	onOk();
}

@UiHandler(uiNext)
void next(ClickEvent e) {
	onNext();
}
	
	public abstract void onPrevious();
public abstract void onOk();
public abstract void onNext();
	
	
	
}


AbstractContentView.ui.xml
Description: XML document
package com.client;

import com.google.gwt.core.client.GWT;
import com.google.gwt.uibinder.client.UiBinder;
import com.google.gwt.uibinder.client.UiField;
import com.google.gwt.user.client.ui.VerticalPanel;
import com.google.gwt.user.client.ui.Widget;

public class Content1 extends AbstractContentView {

//	@UiField VerticalPanel uiPanel;
	
	private static Content1UiBinder uiBinder = GWT
			.create(Content1UiBinder.class);

	interface Content1UiBinder extends UiBinderWidget, Content1 {
	}

	public Content1() {
		super();
		
		initWidget(uiBinder.createAndBindUi(this));
		
		setContentWidget(this);
//		setContentWidget(uiPanel);
	}

	@Override
	public void onPrevious() {
		// TODO Auto-generated method stub
		
	}

	@Override
	public void onOk() {
		// TODO Auto-generated method stub
		
	}

	@Override
	public void onNext() {
		// TODO Auto-generated method stub
		
	}

}


Content1.ui.xml
Description: XML document


GWT Development Mode detailed nocache.js

2012-03-29 Thread YvetteT
Hi,

is it possible to get pretty javascript for the generated *.nocache.js 
using eclipse?

Because the DevMode debug config itself refuses to accept -style DETAILED 
if specified using the arguments list.

Thanks

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/zFTP8LhMZ5IJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Sample GWTTestcase tests

2012-03-29 Thread mgharikrishnan

Hi All,

I am tring to learn, How to write GWTTestcase based tests for my
application. I am looking for some sample tests that deals with
GWTTestcases test for Presenter, GWTTestcases for View kind of
stuffs. I am a QA Engineer with much limited knowledge in code, so I
would like to try some examples like this.

Please point me to some place, where I can see some examples like
this. Help me...

Thanks,
Harri...

-- 
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-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



How Do You Persist New Objects using View and Activity?

2012-03-29 Thread Christopher Britz
I have a fairly simple question here.  Hopefully someone can shed some 
light on the subject for me.  Real quick heres what I am working with:

I am using the MVP with architecture using Activities and Places with 
RequestFactory to do my backend services. 

Now heres the question:

How would I persist a new object within my Activity class if all the 
information for that object is within my implemented View class?  For 
example, say I have a View that has a two textboxes that hold string 
values. I have a server side entity object that has a setter for both 
string values, but I have to access that setter value through the 
EntityProxy interface because of the separation of client server.  Now I 
cannot instantiate an EntityProxy interface to hold the values for my 
strings in my textboxes.  And here lies the problem.  How do i get the 
values from all the textboxes in an object to send to the Activity(to do 
server side work) if the proxy to that object is accessed through an 
interface?

Thanks in advance

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/Xd_k0Sap7Z8J.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Client plugin architecture with GWT

2012-03-29 Thread Kevin Wan
 Hi Marco,

I'm currently working on a web application base on GWT. We're trying to 
support plugins. Would you please let me know if you open sourced the 
plugin project?

Thank you very much!
Kevin


On Thursday, May 17, 2007 9:57:38 PM UTC+8, Netsurfer wrote:

 We are working on it. The idea is a porting of Eclipse RCP framework
 into a GWT based application.
 Currently the first results are good but as you can imagine this
 requires a lot of work and blood.

 We are thinking to distribute this project as opensource but this is
 not a one day decision ;-)

 Marco

 p.s. to Reiner: think we didn't understood ourselves: I agree on what
 you said!...but the specs of our project doesn't include dimension of
 compiled JS (at least at the moment).

 On May 17, 3:13 pm, Andrej Harsani ahars...@gmail.com wrote:
  Hi Marco,
  Do you have any documentation of your gwt plugin framework?
 
  Yes plugin architecture is very usefull. good non-web examples are 
 eclipse
  or firefox.
 
  I need it because I want to allow 3rd party developers to create plugins
  into my new
  GWT application.
 
  A.
 
  On 5/17/07, cignini cign...@gmail.com wrote:
 
 
 
 
 
   I retain that this is a good solution because separate
   responsibilities in different plugins permits to simplifies team work
   development and large reuse of plugins in different situations.
   A view that display contents of a User contained in one plugin used in
   an application A that performs some activity is reusable in an
   application B in just simple few clicks.
 
   Marco
 
   On May 17, 12:11 pm, Reinier Zwitserloot reini...@gmail.com wrote:
On May 17, 11:58 am, cignini cign...@gmail.com wrote:
 
 I retain that is a good solution for a client application that 
 must be
 web based.
 
You mean like how GWT produces client apps that are web based?
 
  --
  Best regards,
  Andrej Harsani
  Quality Unit



-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/0TeJTkSYfKMJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Oracle DataBase Connectivity

2012-03-29 Thread Amit Ughade
Hi,

I just got error message while creating database connectivity program.
I already given reference of external ojdbc14.jar file.

[DEBUG] [mydatabase] - Validating newly compiled units
[TRACE] [mydatabase] - Finding entry point classes
[ERROR] [mydatabase] - Errors in 'file:/C:/Users/aughade/workspace/
MyDataBase/src/com/google/MyDataBase/client/MyDataBase.java'
[ERROR] [mydatabase] - Line 40: No source code is available for 
type
java.sql.Connection; did you forget to inherit a required module?
[ERROR] [mydatabase] - Line 42: No source code is available for 
type
java.sql.Statement; did you forget to inherit a required module?
[ERROR] [mydatabase] - Line 44: No source code is available for 
type
java.sql.ResultSet; did you forget to inherit a required module?
[ERROR] [mydatabase] - Line 87: No source code is available for 
type
java.sql.SQLException; did you forget to inherit a required module?
[ERROR] [mydatabase] - Errors in 'file:/C:/Users/aughade/workspace/
MyDataBase/src/com/google/MyDataBase/client/MyConnection.java'
[ERROR] [mydatabase] - Line 5: No source code is available for 
type
java.sql.Connection; did you forget to inherit a required module?
[ERROR] [mydatabase] - Line 10: The method forName(String) is
undefined for the type Class
[ERROR] [mydatabase] - Line 11: No source code is available for 
type
java.sql.DriverManager; did you forget to inherit a required module?
[ERROR] [mydatabase] - Line 14: No source code is available for 
type
java.lang.ClassNotFoundException; did you forget to inherit a required
module?
[ERROR] [mydatabase] - Line 18: No source code is available for 
type
java.sql.SQLException; did you forget to inherit a required module?
[ERROR] [mydatabase] - Unable to find type
'com.google.MyDataBase.client.MyDataBase'
[ERROR] [mydatabase] - Hint: Previous compiler errors may have 
made
this type unavailable
[ERROR] [mydatabase] - Hint: Check the inheritance chain from 
your
module; it may not be inheriting a required module or a module may not
be adding its source path entries properly
[ERROR] [mydatabase] - Failed to load module 'mydatabase' from user
agent 'Mozilla/5.0 (Windows NT 6.1; rv:9.0.1) Gecko/20100101 Firefox/
9.0.1' at 127.0.0.1:56905
[DEBUG] [mydatabase] - Validating newly compiled units
[TRACE] [mydatabase] - Finding entry point classes
[ERROR] [mydatabase] - Errors in 'file:/C:/Users/aughade/workspace/
MyDataBase/src/com/google/MyDataBase/client/MyDataBase.java'
[ERROR] [mydatabase] - Line 40: No source code is available for 
type
java.sql.Connection; did you forget to inherit a required module?
[ERROR] [mydatabase] - Line 42: No source code is available for 
type
java.sql.Statement; did you forget to inherit a required module?
[ERROR] [mydatabase] - Line 44: No source code is available for 
type
java.sql.ResultSet; did you forget to inherit a required module?
[ERROR] [mydatabase] - Line 87: No source code is available for 
type
java.sql.SQLException; did you forget to inherit a required module?
[ERROR] [mydatabase] - Errors in 'file:/C:/Users/aughade/workspace/
MyDataBase/src/com/google/MyDataBase/client/MyConnection.java'
[ERROR] [mydatabase] - Line 5: No source code is available for 
type
java.sql.Connection; did you forget to inherit a required module?
[ERROR] [mydatabase] - Line 10: The method forName(String) is
undefined for the type Class
[ERROR] [mydatabase] - Line 11: No source code is available for 
type
java.sql.DriverManager; did you forget to inherit a required module?
[ERROR] [mydatabase] - Line 14: No source code is available for 
type
java.lang.ClassNotFoundException; did you forget to inherit a required
module?
[ERROR] [mydatabase] - Line 18: No source code is available for 
type
java.sql.SQLException; did you forget to inherit a required module?
[ERROR] [mydatabase] - Unable to find type
'com.google.MyDataBase.client.MyDataBase'
[ERROR] [mydatabase] - Hint: Previous compiler errors may have 
made
this type unavailable
[ERROR] [mydatabase] - Hint: Check the inheritance chain from 
your
module; it may not be inheriting a required module or a module may not
be adding its source path entries properly
[ERROR] [mydatabase] - Failed to load module 'mydatabase' from user
agent 'Mozilla/5.0 (Windows NT 6.1; rv:9.0.1) Gecko/20100101 Firefox/
9.0.1' at 127.0.0.1:56906
**
13:50:22.803 [ERROR] [mydatabase] Line 40: No source code is available
for type java.sql.Connection; did you forget to inherit a required
module?



please help me to fix it.

-- 

Re: UiBinder and abstract class

2012-03-29 Thread Luis Costa
Hello all,
I'm having the same doubt, 
Damians, did you put your code working?
I'm having the same error.
Thanks,
Luis.

Segunda-feira, 1 de Fevereiro de 2010 11h22min10s UTC, damians escreveu:

 Hello,

 I've got a problem and i googled lots of pages to see if anyone got
 the same problem but i didn't find anything.

 I've got class AbstractDialog that extends DialogBox with some
 standart buttons like OK CANCEL that are bound by UiBinder. I've got
 another class that extends AbstractDialog with another declarative xml
 file, that contains only the main content of that DialogBox.

 When am trying to lunch application i got this error:
 Rebinding package.classUiBinder
   Invoking com.google.gwt.dev.javac.StandardGeneratorContext@a51c3c
 Method 'ok' can not be bound. You probably missed
 ui:field='okButton' in the template.

 Method ok and UiHandler for button okVutton is declared in
 AbstractDialog. From class that extends AbstractDialog the UiField is
 not visible. Am i doing something wrong or i just didnt saw any
 information that you can not extends an object tha got his own
 UiBinder and extended class got their own UiBinder as well.

 My code:

 AbstractDialogBox.java

 public abstract class AbstractDialogBox extends DialogBox
 {
 private static AbstractDialogBoxUiBinder uiBinder = GWT.create
 (AbstractDialogBoxUiBinder.class);

 interface AbstractDialogBoxUiBinder extends UiBinderWidget,
 AbstractDialogBox
 {
 }

 @UiField Button okButton;
 @UiField Button cancelButton;
 @UiField Label emptyLabel;
 @UiField VerticalPanel main;

 public AbstractDialogBox()
 {
 setWidget(uiBinder.createAndBindUi(this));
 setStyleName(oe-DialogBox);

 okButton.setText(OK);
 cancelButton.setText(CANCEL);
 }

 public void setContent(Widget content)
 {
 main.add(content);
 }

 @UiHandler(okButton)
 void ok(ClickEvent e)
 {
 onOK();
 }

 @UiHandler(cancelButton)
 void cancel(ClickEvent e)
 {
 onCancel();
 }

 public void keyPress(KeyPressEvent event)
 {
 if (event.getCharCode() == 13)
 onOK();
 else if (event.getCharCode() == 27)
 onCancel();
 }

 public abstract void onOK();
 public abstract void onCancel();
 }

 AbstractDialog.ui.xml

 !DOCTYPE ui:UiBinder SYSTEM http://dl.google.com/gwt/DTD/xhtml.ent;
 ui:UiBinder xmlns:ui=urn:ui:com.google.gwt.uibinder
 xmlns:g=urn:import:com.google.gwt.user.client.ui

 g:HTMLPanel
 table width=320px cellspacing=0 cellpadding=3
 tr
 td colspan=3g:VerticalPanel ui:field=main 
 width=100%//
 td
 /tr
 tr
 tdg:Label ui:field=emptyLabel 
 width=140px//td
 tdg:Button ui:field=okButton 
 styleName=dialogButton//td
 tdg:Button ui:field=cancelButton 
 styleName=dialogButton//
 td
 /tr
 /table
 /g:HTMLPanel
 /ui:UiBinder

 LoginOptionDialog.java that extends AbstractDialog

 public class LoginOptionDialog extends AbstractDialogBox
 {
 private static LoginOptionDialogUiBinder uiBinder = GWT.create
 (LoginOptionDialogUiBinder.class);
 interface LoginOptionDialogUiBinder extends UiBinderWidget,
 LoginOptionDialog{}

 @UiField Image icon;
 @UiField Label descIp;
 @UiField TextBox ip;
 @UiField HTMLPanel content;

 public LoginOptionDialog()
 {
 super();

 setText(Login options);

 descIp.setText(Server IP:);
 ip.setText(Enter ip);

 setContent(content);
 }

 @UiHandler(ip)
 public void press(KeyPressEvent event)
 {
 keyPress(event);
 }

 public void onCancel()
 {
 // restore ip text from application context
 hide();
 }

 public void onOK()
 {
 // set ip in application context
 hide();
 }
 }

 LoginOptionDialog.ui.xml

 !DOCTYPE ui:UiBinder SYSTEM http://dl.google.com/gwt/DTD/xhtml.ent;
 ui:UiBinder xmlns:ui=urn:ui:com.google.gwt.uibinder
 xmlns:g=urn:import:com.google.gwt.user.client.ui

  g:HTMLPanel ui:field=content
   table width=100% cellspacing=0 cellpadding=3
tr
 tdg:Image ui:field=icon url=gfx/ServerIp.png width=23px
 height=23px//td
 td align=centerg:Label ui:field=descIp
 styleName=dialogText wordWrap=false width=126px//td
 tdg:TextBox ui:field=ip styleName=dialogText width=165px/
 /td
/tr
   /table
  /g:HTMLPanel

 

ClassCastException when service is included

2012-03-29 Thread Vlad
Hi Everyone,

I have an issue which I am unable to solve. I am getting
ClassCastException when I include GWT.create(UserService.class); in by
view. It worked fine but then it suddenly stopped.

UserServiceAsync.java:
public interface UserServiceAsync {
void signIn(String email, String password, AsyncCallbackString
callback);
}

Loginview.Java
public class LoginView extends Composite {
private UserService userRpcService =
GWT.create(UserService.class); // this throws following exception


21:03:42.923 [ERROR] [myproject] Unable to load module entry point
class com.myproject.gwt.myproject.ProjectOne (see associated exception
for details)
java.lang.ClassCastException:
com.myproject.gwt.client.services.UserService_Proxy cannot be cast to
com.myproject.gwt.client.services.UserService
at com.myproject.gwt.client.viewes.LoginView.init(LoginView.java:
28)
at
com.myproject.gwt.client.ProjectOne.onModuleLoad(ProjectOne.java:82)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at com.google.gwt.dev.shell.ModuleSpace.onLoad(ModuleSpace.java:
396)
at
com.google.gwt.dev.shell.OophmSessionHandler.loadModule(OophmSessionHandler.java:
200)
at
com.google.gwt.dev.shell.BrowserChannelServer.processConnection(BrowserChannelServer.java:
525)
at
com.google.gwt.dev.shell.BrowserChannelServer.run(BrowserChannelServer.java:
363)
at java.lang.Thread.run(Unknown Source)


GWT 2.4.0 - Eclipse

Can you please point me to a solution?
Vlad

-- 
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-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Autobeans and root level Maps/Lists

2012-03-29 Thread Skitch
How do you handle autobeans with root levels Maps/Lists?  Simply doing
AutoBeanMap items() doesn't seem to work.  Since my REST resource
returns a root-level map, I cannot surpass creating an interface that
contains a sub-reference to MapString,Object, and then casting that
distinct interface in the AutoBean.  How can I do root-level Lists as
well?

-- 
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-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: How to share classes between two different modules with two different pages

2012-03-29 Thread Олександр Бежан
I think the best way you can do this is to create third gwt module 
('common' for example) and move all common classes there.
Then you can inherit this module and access to common classes.

вторник, 20 марта 2012 г. 23:22:58 UTC+2 пользователь Deepak Singh написал:

 Hi All,

 I have a GWT project with 2 modules.

 ModuleA  and ModuleB
 Both are having their own html page. i.e. tow seperate html pages so 
 seperate Rootpanel for both of them.

 So i cant inherit one into another.

 How can i use the same class(in shared package) in both the modules ?



 Thanks 
 Deepak Singh
  

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/VQkHUafxafsJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



GWT page with multiple accounts

2012-03-29 Thread Steini
Hi there,

I am new to GWT and web design in general. I am required to design a
web application that has different kinds of accounts with different
privileges(e.g. admin, normal) for my bachelor degree. I searched the
web for some time and never found information on how to implement
accounts in a GWT application. Good stuff about login and storing
passwords securely, but never about the whole thing. I hope you are
able to help me.

1. Do I have to make some special arrangements for my page to allow
multiple users to use it? By special arrangements I mean e.g setting
up classes which handle account stuff, maybe they're already built
into GWT.

2. My application uses database functionality extensively(actually
it's SQL queries hidden by a GUI, so no fancy algorithms involved), so
to ensure that the database can be accessed with multiple accounts
simultaneously and remain consistent, do i have to do some kind of
threading for the accounts? Do i have to put for each account a new
java thread on the server side which handles all methods accessing the
database. Of course these methods then must be synchronized. Or is
there some easier way to do this(if my approach works at all, haven't
tried it out yet)?

3. How can I ensure my user can only see the parts of the page he is
supposed to and not the ones he isn't? By what means can I enforce
this in a GWT application? My approach here would be some global
variable set when he logs in which identifies the user as e.g. admin
and then check on every view transition if the user can access this
view. Are there any guidelines from Google I was too stupid to find?


As you may see, i have put some thought into the matter, but I like to
get it right the first time, so I look for feedback on what works and
what doesn't. To me it's frustrating being halfway through programming
only to realize that the approach I was taking does not work and all
the hours were for nothing.

So thanks in advance for any replies.

-- 
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-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



GWT-RPC: encodedRequest cannot be empty error

2012-03-29 Thread kishorpatel415
Hello,

We are using GWT 2.3 in our web application. In our log files we see the 
error encodedRequest cannot be empty. This error occurs when we make 
GWT-RPC calls. The error is intermittent. It does not happen all of the 
time. Based on the log file data, it happens approx 5% of the time for 
GWT-RPC calls.

Any work arounds for resolving this? Thanks.

Stack Trace:
java.lang.IllegalArgumentException: encodedRequest cannot be empty
at com.google.gwt.user.server.rpc.RPC.decodeRequest(RPC.java:229)
at 
com.google.gwt.user.server.rpc.RemoteServiceServlet.processCall(RemoteServiceServlet.java:206)
at 
com.google.gwt.user.server.rpc.RemoteServiceServlet.processPost(RemoteServiceServlet.java:248)
at 
com.google.gwt.user.server.rpc.AbstractRemoteServiceServlet.doPost(AbstractRemoteServiceServlet.java:62)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:754)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:847)

Client Environment:
Microsoft Internet Explorer 8
MS Windows 7

Server Environment:
Tomcat 7
MS Windows 2008
JDK 1.6
GWT 2.3


-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/Ts72smzTqRIJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



GWT-RPC Error

2012-03-29 Thread kishorpatel415
Hello,

We are using GWT 2.3 in our web application. In our log files we see
the error encodedRequest cannot be empty. This error occurs when we
make GWT-RPC calls. The error is intermittent. It does not happen all
of the time. Based on the log file data, it happens approx 5% of the
time for GWT-RPC calls.

Any work arounds for resolving this? Thanks.

Stack Trace:
java.lang.IllegalArgumentException: encodedRequest cannot be empty
at com.google.gwt.user.server.rpc.RPC.decodeRequest(RPC.java:229)
at
com.google.gwt.user.server.rpc.RemoteServiceServlet.processCall(RemoteServiceServlet.java:
206)
at
com.google.gwt.user.server.rpc.RemoteServiceServlet.processPost(RemoteServiceServlet.java:
248)
at
com.google.gwt.user.server.rpc.AbstractRemoteServiceServlet.doPost(AbstractRemoteServiceServlet.java:
62)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:754)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:847)

Client Environment:
Microsoft Internet Explorer 8
MS Windows 7

Server Environment:
Tomcat 7
MS Windows 2008
JDK 1.6
GWT 2.3

-- 
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-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



small line near 'tabpanel' .

2012-03-29 Thread !!Sameer!!
Hi,

I have included a Tabpanel in my main panel.

Panel shakes when i switch and panel includes a small line ..see the
link . .http://geekospace.com/tabpanel-in-gwt/

Let me know if there are any fix for these . .

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-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



using gwttestcase examples

2012-03-29 Thread Karol Siwek
do you know any good sites with some tutorial of using gwtTestCase?

i tried to follow
http://code.google.com/intl/pl/webtoolkit/doc/1.6/DevGuideTesting.html
but it seems to be not complete.

i want to test my MVP GWT project, especially some *viewimpl.java
file, but there is a problem with initialization of this file. I also
can't do a mock of any *viewImpl.java file. Right now i'm having that
error:



com.google.gwt.core.ext.UnableToCompleteException: (see previous log entries)
at 
com.google.gwt.dev.cfg.ModuleDefLoader.nestedLoad(ModuleDefLoader.java:278)
at 
com.google.gwt.dev.cfg.ModuleDefLoader$2.load(ModuleDefLoader.java:217)
at 
com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:324)
at 
com.google.gwt.dev.cfg.ModuleDefLoader.createSyntheticModule(ModuleDefLoader.java:107)
at 
com.google.gwt.junit.CompileStrategy.maybeCompileModuleImpl2(CompileStrategy.java:165)
at 
com.google.gwt.junit.CompileStrategy.maybeCompileModuleImpl(CompileStrategy.java:112)
at 
com.google.gwt.junit.SimpleCompileStrategy.maybeCompileModule(SimpleCompileStrategy.java:36)
at com.google.gwt.junit.JUnitShell.runTestImpl(JUnitShell.java:1340)
at com.google.gwt.junit.JUnitShell.runTestImpl(JUnitShell.java:1309)
at com.google.gwt.junit.JUnitShell.runTest(JUnitShell.java:653)
at com.google.gwt.junit.client.GWTTestCase.runTest(GWTTestCase.java:441)
at junit.framework.TestCase.runBare(TestCase.java:134)
at junit.framework.TestResult$1.protect(TestResult.java:110)
at junit.framework.TestResult.runProtected(TestResult.java:128)
at junit.framework.TestResult.run(TestResult.java:113)
at junit.framework.TestCase.run(TestCase.java:124)
at com.google.gwt.junit.client.GWTTestCase.run(GWTTestCase.java:296)
at junit.framework.TestSuite.runTest(TestSuite.java:243)
at junit.framework.TestSuite.run(TestSuite.java:238)
at 
org.junit.internal.runners.JUnit38ClassRunner.run(JUnit38ClassRunner.java:83)
at 
org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:49)
at 
org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
at 
org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467)
at 
org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683)
at 
org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390)
at 
org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:197)



i have updated maven, and i use GWT 2.1.0

-- 
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-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Loading of Javascript file

2012-03-29 Thread Adolfo Panizo Touzon
I've seen in the keyboards.js

VKI_attach = function(elem) { .. }

try to change the name of the function to something like *function
myKeyBoard(elem){...}*

Then, in your gwt  java class, after the code is injected, call to the
method myMethodCall.

public final native void myMethodCall(Elem oneElem) /*-{

$wnd.myKeyBoard(oneElem);
}-*/;

My 2 cents,

Adolfo



2012/3/20 dvarrin daniel.var...@gmail.com

 How can I do the call to the VKI_attach(elem) function with JSNI?

 I tried to write $wnd.VKI_attach(name), but I'm getting an error
 message telling that VKI_attach is not a function.

 On Mar 20, 5:46 pm, Thomas Broyer t.bro...@gmail.com wrote:
  On Tuesday, March 20, 2012 5:41:19 PM UTC+1, dvarrin wrote:
 
   Hi,
 
   I want to use a virtual keyboard for some input fields on a web page
   of my GWT website. In a normal HTML page, I would need to do the
   following:
 
   html
 head
   script type=text/javascript src=keyboard.js charset=UTF-8/
   script
   link rel=stylesheet type=text/css href=keyboard.css
 /head
 
 body
   input type=text value= class=keyboardInput
 /body
 
   (required files are available here:
  http://www.greywyvern.com/code/javascript/keyboard)
 
   There is a javascript file and style sheet to include on the page, and
   then all the input fields on which I want a virtual keyboard to be
   assgned, I've to set their class to keyboardInput.
 
   I've added the keyboard.js and keyboard.css to the html page in my
   application and then in the class creating the view I'm using:
 
   nameOfField.setStyleName(keyboardInput);
 
   Then the script should add the virtual keyboard image next to each
   field of the class keyboardInput.
 
   when I check the result page, the field has is of the correct class,
   and I've added an alert in the keyboard.js script and it is executed,
   but no virtual keyboard image is displayed next to the field.
 
   Any idea?
 
  See Advanced Stuff on the page you linked to: the script runs at
  window.onload, and GWT code can run past this event. You'd have to call
 the
  VTI_attach() function via JSNI, passing myWidget.getElement() as the
  argument.

 --
 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-toolkit+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/google-web-toolkit?hl=en.




-- 
El precio es lo que pagas. El valor es lo que recibes.
Warren Buffet

-- 
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-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



File Upload Problem - java.lang.NoClassDefFoundError: Could not initialize class org.apache.commons.fileupload.disk.DiskFileItem

2012-03-29 Thread Nishant
Hi,

I have problem with the File Upload in GWT using the Apache Commons
File Upload.

I am using Windows XP + Eclipse Indigo + GWT for Eclipse Indigo.
I have the following jars in my Build Path and the war/WEB-INF/lib
*commons-fileupload-1.2.3.jar
commons-io-2.1.jar*

I am trying to upload file from the client to server following the
code on this link http://commons.apache.org/fileupload/using.html

But every time I try to upload a file I get one of the following
errors

java.lang.NoClassDefFoundError: Could not initialize class
org.apache.commons.fileupload.disk.DiskFileItem
   at
org.apache.commons.fileupload.disk.DiskFileItemFactory.createItem(
DiskFileItemFactory.java:
199)
   at
org.apache.commons.fileupload.FileUploadBase.parseRequest(
FileUploadBase.java:
361)
   at
org.apache.commons.fileupload.servlet.ServletFileUpload.parseRequest(
ServletFileUpload.java:
126)
   at
com.tibco.gwt.server.FileUploadServlet.doPost(FileUploadServlet.java:
28)

or

java.lang.NoClassDefFoundError: java.rmi.server.UID is a restricted
class. Please see the Google  App Engine developer's guide for more
details.
   at
com.google.appengine.tools.development.agent.runtime.
Runtime.reject(Runtime.java:
51)
   at
org.apache.commons.fileupload.disk.DiskFileItem.clinit(DiskFileItem.java:
109)
   at
org.apache.commons.fileupload.disk.DiskFileItemFactory.createItem(
DiskFileItemFactory.java:
199)
   at
org.apache.commons.fileupload.FileUploadBase.parseRequest(
FileUploadBase.java:
361)
   at
org.apache.commons.fileupload.servlet.ServletFileUpload.parseRequest(
ServletFileUpload.java:
126)
   at
com.tibco.gwt.server.FileUploadServlet.doPost(FileUploadServlet.java:
28)

The error is always at the following line:
*// Parse the request
List /* FileItem */ items = upload.parseRequest(request);*

Can any of you experts let me the solution for this problem.

Regards,
Nishant 

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/HKfLvsBE5ggJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Several Observers in one Class.

2012-03-29 Thread Max
Hi there !

Have a simple GWT's TextBox, using getText() and setText() manipulations 
via Observers.
Have one onClick event, and try to fetch some values from 2 Observers 
(simply modifying TextBox with Observer's internal setText(), getText() ), 
but unsuccessful, TextBox keeps it's old values.
I could notify updated TextBox's values inside the Observer, but how to 
deliver these TextBox's updated values via onClick event ?
Is there any specific use of Observer pattern in GWT ?
How to link several Observers on one event ?

Thank you all for useful feedback ! :)


-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/rPrdghzhHXYJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Samplo reading mails JavaMail

2012-03-29 Thread Iv Snake
I try to use JavaMail with GWT from read mails in a Gmail account but
I have this error:

ERROR: javax.mail.NoSuchProviderException: Unable to locate provider
for protocol: imaps

That is my code in server package:

public MyUserServiceImpl() {
String host = imap.gmail.com;
String port = 993;
String user = u...@gmail.com;
String pass = pass;

Properties props = System.getProperties();
props.setProperty(mail.store.protocol, imaps);
props.setProperty(mail.imaps.host, host);
props.setProperty(mail.imaps.port, port);
props.setProperty(mail.imap.socketFactory.class,
javax.net.ssl.SSLSocketFactory);
props.setProperty(mail.imap.socketFactory.fallback, false);

System.out.println(Definiendo...);
try{
Session session = Session.getDefaultInstance(props, 
null);
Store store = session.getStore();
store.connect(host, user, pass);
System.out.println(OK!);
}
catch(Exception e){
System.out.println(ERROR:  + e);
}
}

Thanks for the help.

-- 
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-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Maven compilatiion error

2012-03-29 Thread developer
[INFO]Computing all possible rebind results for
'com.mycompany.web.dmt.gwt.client.DmtGwt'
[INFO]   Rebinding com.mycompany.web.dmt.gwt.client.DmtGwt
[INFO]  Checking rule generate-with
class='com.extjs.gxt.ui.rebind.core.BeanModelGenerator'/
[INFO] [ERROR] Unable to find type
'com.mycompany.web.dmt.gwt.client.DmtGwt'
[INFO][ERROR] Hint: Previous compiler errors may have
made this type unavailable
[INFO][ERROR] Hint: Check the inheritance chain from
your module; it may not be inheriting a required mo
dule or a module may not be adding its source path entries properly
[INFO]

[ERROR] BUILD ERROR
[INFO]

[INFO] Command [[




Using gwt-maven-plugin 2.4.0

-- 
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-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: How to share classes between two different modules with two different pages

2012-03-29 Thread Fernando Varella Lopes
i think that you can make a new module for the classes you want use in 
other two, and inherit it.

Em terça-feira, 20 de março de 2012 18h22min58s UTC-3, Deepak Singh 
escreveu:

 Hi All,

 I have a GWT project with 2 modules.

 ModuleA  and ModuleB
 Both are having their own html page. i.e. tow seperate html pages so 
 seperate Rootpanel for both of them.

 So i cant inherit one into another.

 How can i use the same class(in shared package) in both the modules ?



 Thanks 
 Deepak Singh
  

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/YbgGdvgsQtcJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Embed GWT application into external html page

2012-03-29 Thread Tibor Finta
Hi All,

I'm about to write a new small chat web application. This application
should communicate with our server but should appear on our customers'
web pages. Which is the most efficient/easiest way to put a GWT
application into a web page if the app has to communicate with an
other server host?

I know the application can be put into a separate iframe. But is there
a way to put it into a div or any other html tags? And how?

Thanks,
Tibor

-- 
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-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Try to resolve this error

2012-03-29 Thread Amit Ughade
[DEBUG] [mydatabase] - Validating newly compiled units
[TRACE] [mydatabase] - Finding entry point classes
[ERROR] [mydatabase] - Errors in 'file:/C:/Users/aughade/workspace/
MyDataBase/src/com/google/MyDataBase/client/MyDataBase.java'
[ERROR] [mydatabase] - Line 40: No source code is available for 
type
java.sql.Connection; did you forget to inherit a required module?
[ERROR] [mydatabase] - Line 42: No source code is available for 
type
java.sql.Statement; did you forget to inherit a required module?
[ERROR] [mydatabase] - Line 44: No source code is available for 
type
java.sql.ResultSet; did you forget to inherit a required module?
[ERROR] [mydatabase] - Line 87: No source code is available for 
type
java.sql.SQLException; did you forget to inherit a required module?
[ERROR] [mydatabase] - Errors in 'file:/C:/Users/aughade/workspace/
MyDataBase/src/com/google/MyDataBase/client/MyConnection.java'
[ERROR] [mydatabase] - Line 5: No source code is available for 
type
java.sql.Connection; did you forget to inherit a required module?
[ERROR] [mydatabase] - Line 10: The method forName(String) is
undefined for the type Class
[ERROR] [mydatabase] - Line 11: No source code is available for 
type
java.sql.DriverManager; did you forget to inherit a required module?
[ERROR] [mydatabase] - Line 14: No source code is available for 
type
java.lang.ClassNotFoundException; did you forget to inherit a required
module?
[ERROR] [mydatabase] - Line 18: No source code is available for 
type
java.sql.SQLException; did you forget to inherit a required module?
[ERROR] [mydatabase] - Unable to find type
'com.google.MyDataBase.client.MyDataBase'
[ERROR] [mydatabase] - Hint: Previous compiler errors may have 
made
this type unavailable
[ERROR] [mydatabase] - Hint: Check the inheritance chain from 
your
module; it may not be inheriting a required module or a module may not
be adding its source path entries properly
[ERROR] [mydatabase] - Failed to load module 'mydatabase' from user
agent 'Mozilla/5.0 (Windows NT 6.1; rv:9.0.1) Gecko/20100101 Firefox/
9.0.1' at 127.0.0.1:58334
[DEBUG] [mydatabase] - Validating newly compiled units
[TRACE] [mydatabase] - Finding entry point classes
[ERROR] [mydatabase] - Errors in 'file:/C:/Users/aughade/workspace/
MyDataBase/src/com/google/MyDataBase/client/MyDataBase.java'
[ERROR] [mydatabase] - Line 40: No source code is available for 
type
java.sql.Connection; did you forget to inherit a required module?
[ERROR] [mydatabase] - Line 42: No source code is available for 
type
java.sql.Statement; did you forget to inherit a required module?
[ERROR] [mydatabase] - Line 44: No source code is available for 
type
java.sql.ResultSet; did you forget to inherit a required module?
[ERROR] [mydatabase] - Line 87: No source code is available for 
type
java.sql.SQLException; did you forget to inherit a required module?
[ERROR] [mydatabase] - Errors in 'file:/C:/Users/aughade/workspace/
MyDataBase/src/com/google/MyDataBase/client/MyConnection.java'
[ERROR] [mydatabase] - Line 5: No source code is available for 
type
java.sql.Connection; did you forget to inherit a required module?
[ERROR] [mydatabase] - Line 10: The method forName(String) is
undefined for the type Class
[ERROR] [mydatabase] - Line 11: No source code is available for 
type
java.sql.DriverManager; did you forget to inherit a required module?
[ERROR] [mydatabase] - Line 14: No source code is available for 
type
java.lang.ClassNotFoundException; did you forget to inherit a required
module?
[ERROR] [mydatabase] - Line 18: No source code is available for 
type
java.sql.SQLException; did you forget to inherit a required module?
[ERROR] [mydatabase] - Unable to find type
'com.google.MyDataBase.client.MyDataBase'
[ERROR] [mydatabase] - Hint: Previous compiler errors may have 
made
this type unavailable
[ERROR] [mydatabase] - Hint: Check the inheritance chain from 
your
module; it may not be inheriting a required module or a module may not
be adding its source path entries properly
[ERROR] [mydatabase] - Failed to load module 'mydatabase' from user
agent 'Mozilla/5.0 (Windows NT 6.1; rv:9.0.1) Gecko/20100101 Firefox/
9.0.1' at 127.0.0.1:58338


i already set path of external ojdbc14.jar file.
please help me as soon as possible.

**code*

package com.google.MyDataBase.client;

import com.google.MyDataBase.shared.FieldVerifier;
import com.google.gwt.core.client.EntryPoint;
import com.google.gwt.core.client.GWT;
import com.google.gwt.event.dom.client.ClickEvent;
import com.google.gwt.event.dom.client.ClickHandler;
import 

Re: UiBinder Maps

2012-03-29 Thread Miltos Miltiadou
Hi Nicolas, did you find any solution with this issue. I am facing the same 
problem. Please post your solution, if you find any!

Thanks Miltos.

On Friday, September 30, 2011 10:03:48 PM UTC+3, Nicolas wrote:

 Hi I'm trying to use Google Maps in my project so I add 
 inherits name='com.google.gwt.maps.GoogleMaps' / 
 in the gwt.xml file. I use deferred binding for create the UI and the 
 View.ui.xml file's code is: 
 !DOCTYPE ui:UiBinder SYSTEM http://dl.google.com/gwt/DTD/xhtml.ent; 
 ui:UiBinder xmlns:ui=urn:ui:com.google.gwt.uibinder 
 xmlns:g=urn:import:com.google.gwt.user.client.ui 
 xmlns:p1=urn:import:com.google.gwt.user.cellview.client 
 xmlns:p2=urn:import:com.google.gwt.maps.client 

 ui:style 
 .important { 
 font-weight: bold; 
 } 
 /ui:style 
 g:VerticalPanel ui:field=rootPanel width=100% height=100% 
   p2:MapWidget ui:field='map'  / 
 /g:VerticalPanel 
 /ui:UiBinder 

 The View.java file's code is: 
 import com.google.gwt.core.client.GWT; 
 import com.google.gwt.maps.client.MapWidget; 
 import com.google.gwt.uibinder.client.UiBinder; 
 import com.google.gwt.uibinder.client.UiField; 
 import com.google.gwt.user.client.ui.Composite; 
 import com.google.gwt.user.client.ui.Widget; 
 import com.google.gwt.user.client.ui.VerticalPanel; 
 import com.google.gwt.user.client.ui.Label; 
 import com.google.gwt.user.client.ui.MenuBar; 
 import com.google.gwt.user.cellview.client.CellTable; 

 public class View extends Composite { 

 private static ViewUiBinder uiBinder = GWT 
 .create(ViewUiBinder.class); 
 @UiField VerticalPanel rootPanel; 
 @UiField MapWidget map; 

 interface ViewUiBinder extends UiBinderWidget, View { 
 } 

 public View() { 
 initWidget(uiBinder.createAndBindUi(this)); 
 } 
 } 

 The problem is when i switch from the code view to the design view 
 elipse show me this error: 
 Error loading module(s). 

 GWT Designer can't load a module because of error in gwt.xml module 
 description, incorrect resource which requires processing with GWT 
 generator or by some other configuration error. 

 Please check your $project_dir/.gwt/.gwt-log for GWT-specific errors. 

 This log has the following error messages: 



 [ERROR] Failed to create an instance of 
 'com.google.gwt.maps.client.MapWidget' via deferred binding 


 Show stack trace. 
 Hide stack trace. 

 Stack trace: 
 org.eclipse.wb.internal.core.utils.exception.DesignerException: 4108 
 (Error loading module(s).). 
 [ERROR] Failed to create an instance of 
 'com.google.gwt.maps.client.MapWidget' via deferred binding. 

 The Google Maps API's version is gwt-maps-1.1.1-rc1.jar. 

 I would like to know what I doing wrong.?? 
 Is the Google Maps API version the lastest version?? 

 Thanks.

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/mteCtD5gFFsJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Unexpected internal compiler error java.lang.NoSuchFieldError: warningThreshold when building

2012-03-29 Thread Zoran Polic
Try to change your libraries order under Java Build Path -- Order and 
Export

On Tuesday, December 13, 2011 8:48:41 PM UTC+1, JeffN wrote:

 I get this error when building my project.  I have seen other post
 stating to put the GWT at the top of my classpath and this has not
 helped at all... I am more then willing to give any info to help me
 resolve this issue.

 [ERROR] Unexpected internal compiler error
  [java] java.lang.NoSuchFieldError: warningThreshold
  [java] at
 com.google.gwt.dev.javac.JdtCompiler.getCompilerOptions(JdtCompiler.java:
 413)
  [java] at com.google.gwt.dev.javac.JdtCompiler
 $CompilerImpl.init(JdtCompiler.java:228)
  [java] at
 com.google.gwt.dev.javac.JdtCompiler.doCompile(JdtCompiler.java:700)
  [java] at com.google.gwt.dev.javac.CompilationStateBuilder
 $CompileMoreLater.compile(CompilationStateBuilder.java:235)
  [java] at

 com.google.gwt.dev.javac.CompilationStateBuilder.doBuildFrom(CompilationStateBuilder.java:
 447)
  [java] at

 com.google.gwt.dev.javac.CompilationStateBuilder.buildFrom(CompilationStateBuilder.java:
 370)
  [java] at
 com.google.gwt.dev.cfg.ModuleDef.getCompilationState(ModuleDef.java:
 360)
  [java] at
 com.google.gwt.dev.Precompile.precompile(Precompile.java:252)
  [java] at
 com.google.gwt.dev.Precompile.precompile(Precompile.java:233)
  [java] at
 com.google.gwt.dev.Precompile.precompile(Precompile.java:145)
  [java] at com.google.gwt.dev.Compiler.run(Compiler.java:232)
  [java] at com.google.gwt.dev.Compiler.run(Compiler.java:198)
  [java] at com.google.gwt.dev.Compiler$1.run(Compiler.java:170)
  [java] at
 com.google.gwt.dev.CompileTaskRunner.doRun(CompileTaskRunner.java:88)
  [java] at

 com.google.gwt.dev.CompileTaskRunner.runWithAppropriateLogger(CompileTaskRunner.java:
 82)
  [java] at com.google.gwt.dev.Compiler.main(Compiler.java:177)


-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/7Bla_a1XsWYJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Unable to start app engine server

2012-03-29 Thread Jasonz
I just installed the GWT 1.6.3 eclipse plugins, but when I tried to
start app engine server, I got following exceptions:


Initializing App Engine server
   [ERROR] Unable to start App Engine server
java.lang.RuntimeException: Unable to restore the previous TimeZone
at
com.google.appengine.tools.development.DevAppServerImpl.restoreLocalTimeZone(DevAppServerImpl.java:
228)
at
com.google.appengine.tools.development.DevAppServerImpl.start(DevAppServerImpl.java:
164)
at
com.google.appengine.tools.development.gwt.AppEngineLauncher.start(AppEngineLauncher.java:
97)
at com.google.gwt.dev.DevMode.doStartUpServer(DevMode.java:509)
at com.google.gwt.dev.DevModeBase.startUp(DevModeBase.java:1068)
at com.google.gwt.dev.DevModeBase.run(DevModeBase.java:811)
at com.google.gwt.dev.DevMode.main(DevMode.java:311)
Caused by: java.lang.NoSuchFieldException: defaultZoneTL
at java.lang.Class.getDeclaredField(Unknown Source)
at
com.google.appengine.tools.development.DevAppServerImpl.restoreLocalTimeZone(DevAppServerImpl.java:
222)
... 6 more
Unable to start embedded HTTP server[ERROR] shell failed in
doStartupServer method

com.google.gwt.core.ext.UnableToCompleteException: (see previous log
entries)
at
com.google.appengine.tools.development.gwt.AppEngineLauncher.start(AppEngineLauncher.java:
102)
at com.google.gwt.dev.DevMode.doStartUpServer(DevMode.java:509)
at com.google.gwt.dev.DevModeBase.startUp(DevModeBase.java:1068)
at com.google.gwt.dev.DevModeBase.run(DevModeBase.java:811)
at com.google.gwt.dev.DevMode.main(DevMode.java:311)

-- 
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-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



How to set Web Page margin to Zero(0) using GWT

2012-03-29 Thread Stephen George
When i'm adding a button to the page using the following code there is
some margin. i'm using GWT 2.4.0



import com.google.gwt.core.client.
EntryPoint;
import com.google.gwt.user.client.ui.Button;
import com.google.gwt.user.client.ui.RootPanel;

public class GWTApplication implements EntryPoint {
   public void onModuleLoad() {
   RootPanel.get().add(new Button(Button));
  }
}


i don't want the margin in the web page.
Please help me.


Thank you.

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/L-4ygc0LIsEJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Code Coverage : How to integrate selenium,cobertura with gwt client project for code coverage report.

2012-03-29 Thread Darsha Sai
Hi,

I am using gwt client application.

I interested in selenium automated test case in my project.

I want to use cobertura for code coverage in my project with Selenium
auto mated test case .

How can integrate these two tools for my gwt client project ?

Thanks in advance.

-- 
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-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Is GWT necessary for my app?

2012-03-29 Thread Mohamed Turki
Hello GWT experts out there,

I'm learning GAE/GWT to build an application where users can create 
projects and share their source code, documentation, assign tasks to every 
participant who must respect the project's schedule etc.
I'm having a hard time learning GWT but i really want to use it for this 
project to create a nice GUI  (on the other hand, the official tutorial of 
GAE was enough for me to grasp its basic concepts). My question is, do you 
think that such an app (like the one i'm building) doesn't require GWT and 
i could still do well without it? (btw, I'm no expert in JavaScript and I 
never done anything AJAX before).
Second thing is, I'm planning to use the Google Documents List API and the 
Google Calendar API for sharing documentation and scheduling tasks for 
participants, do you think that's even possible or a good idea? (I have no 
idea how to use those APIs i just want to learn them and integrate them in 
my app if that's possible ! )

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/jKIl0aVn_-MJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



SQLITE and GWT

2012-03-29 Thread misteralex
HELLO

I know how to use SQLite with Android applications but I can't seem to 
figure out how to get started using SQLite with GWT for use in building a 
Packaged App for Chrome. What do I need? I've been searching for days and 
found nothing, so I think I'm off track. Any guidance would be greatly 
appreciated.


What to do with gwt-jdbc-html5 http://code.google.com/p/gwt-jdbc-html5/ 
driver?

Someone can help me?
THANKS IN ADVANCES

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/vrsGARrSazAJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Canvas Background Image

2012-03-29 Thread LincMii
Hello Everyone,

I am new to the GWT but I decided to get integrated by messing around with 
the canvas! I was trying to implement some animation and a background by 
using the ClientBundle and the HTML5 canvas. The CB is to access my images, 
and then there are three canvas; one for the background, one for moving 
creatures, and one for user animations (moving a shark with keyboard 
keys). 

So far, everything has been simple, with the exception of one thing. My 
background image will not show! Here is an example: 
http://2.its381b-helloweb-lmii.appspot.com/

And here is a link to the code: 
http://code.google.com/p/sealsurvival/source/browse/trunk/SealSurvival/src/com/hawaii/blt/sealsurvival/client/SealSurvival.java

I am not asking for anyone to solve this problem for me, but if anyone 
knows of a glitch w/ the canvas or any special properties that I may have 
missed in using the drawImage() function, I would greatly appreciate the 
tip.

Thanks,

LincMii



-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/a4XS7ur6cGQJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: GWT Hosted mode with SSL enabled

2012-03-29 Thread Peter Leong

Thanks, this was just what I needed although I added a property to the 
pom.xml...

properties
*gwt.server:ssl/gwt.server*
/properties

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/CKzYZp0TT5cJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Cannot read property 'offsetWidth' of null

2012-03-29 Thread coder
In my code I use the following technique to download files
Public void onSuccess(Object result) { 
String reportName = (String)result;
String url = GWT.getModuleBaseURL() + ReportUploadHandler 
+ ?rname= + reportName;
Frame frame = new Frame(url);
frame.setVisible(false);
RootPanel.get().add(frame);
}

It seems to work just fine however occasionally I see the following message 
(sometimes repeated several times)
Cannot read property 'offsetWidth' of null in the console of the Chrome 
browser. I have never seen it in Fire Fox.

Any ideas?

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/endr_OS1ngMJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



How to create RadioButton group in uibinder

2012-03-29 Thread Syed Ahmad
Hi Everyone:

This might be a very stupid question, but I am really struggling to
figure how to create a radio button group using uibinder. I will
really appreciate if someone could share a code snippet.

Thanks a lot for your help

Syed

-- 
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-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



GWT, several Observers and one Class.

2012-03-29 Thread Max
Hi there !

I have a GWT's TextArea and tried to manipulate with text values in
this TextArea.
When I've tried to use setText() and getText() simply in OnClick event
it works -  I've got an updated text.
But when I'm starting to fetch the new text values for this TextBox by
using 2 or more Observers (with theirs internal setText() and
getText()) and made it call from OnClick event, I have troubles: the
text didn't changes.

Is it some specific work with Observers in GWT ?
How to call several Observer via one event ?
Anybody has some useful examples ?

Thanks a lot for your useful feedbacks ! :)

-- 
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-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



error in JS console on Chrome

2012-03-29 Thread smida02
I use the following technique to download files from the server
public void onSuccess(Object result) { 
String reportName = (String)result;
String url = GWT.getModuleBaseURL() + ReportUploadHandler 
+ ?rname= + reportName;
Frame frame = new Frame(url);
frame.setVisible(false);
RootPanel.get().add(frame);
}
It works fine on both Fire Fox and Chrome. However, sometimes on Chrome I 
see an error in the console saying
'cannot read property 'offsetwidth' of null' the error is often listed 
multiple times.
Its strange because often the exact code runs fine with no errors in the 
console. BTW, I have never seen this on Fire Fox.

Any ideas? 

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/p6BZIow1eNsJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: how to change default GWT TEXTBOX Border color

2012-03-29 Thread Maxime Mularz
Hi ,

Call your CSS file after the js.file, like above
*
script type=text/javascript language=javascript src=gwt/
gwt.nocache.js/script

link type=text/css rel=stylesheet href=GWT.css
*

Regards,

Maxime

On 24 mar, 16:38, junaid juna...@gmail.com wrote:
 how can i change the default border color of GWt TextBox. i tried this

                .gwt-TextBox:focus
                {
                  border: 1px solid #FF;
                }

 but with no luck

 the default golden color remain there ,and my red color also added , but i
 need to replace that default golden color with red color

 any suggestion

 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-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



GWT and Canvas

2012-03-29 Thread LincMii
Does anyone know if there is an image size limit to drawing an image on a 
canvas?

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/YfIvlK47olQJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Create autobean as RF does it

2012-03-29 Thread Eugene Ivlev
I have such problem:

I use RF as main CRUD client-server interface, but I also use
Atmosphere framework as server-push mechanism.
My aim is multi-client application. All clients must receive
notification about changes made by anyone.  The communication looks
like this:


@ProxyFor(TestEntity.class)
TestProxy extends EntityProxy



|   |
  TestProxy obj |RF update entity--|---  RequestFactory
Servlet
|   |  |
|   |  |
|   |  |
|   |  |
AutoBeanTestProxy obj |--Atmosphere notification-|-|
Atmosphere Servlet creates AutoBeanTestProxy
|   with entity to all client   |
|   |
|   |
|   |
|   |
|   |
|   |
client  server

But RF adds to AutoBean some kind of additional information. Therefore
I can't use autobaen received from Atmosphere in next communication by
RF channel.
How I can create autobean as RF does it?

-- 
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-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Adding a PieChart tooltip.text to the piechart options

2012-03-29 Thread Stuart

Folks,

I want to hide the value of pie chart slices in the tooltip.  I found
the property 'tooltip.text' in the JavaScript doc for PieChart.  Here
is the JavaScript example I modified to work as I want it:
=
function drawVisualization() {
  // Create and populate the data table.
  var data = new google.visualization.DataTable();
  data.addColumn('string', 'Task');
  data.addColumn('number', 'Hours per Day');
  data.addColumn({type:'string', role:'tooltip'});

  data.addRows(5);
  data.setValue(0, 0, 'Work');
  data.setValue(0, 1, 11);
  data.setValue(1, 0, 'Eat');
  data.setValue(1, 1, 2);
  data.setValue(2, 0, 'Commute');
  data.setValue(2, 1, 2);
  data.setValue(3, 0, 'Watch TV');
  data.setValue(3, 1, 2);

  data.setValue(4, 0, 'Sleep');
  data.setValue(4, 1, 7);

   var options = {title:So, how was your day?, tooltip: {text:
percentage}};

  // Create and draw the visualization.
  new
google.visualization.PieChart(document.getElementById('visualization')).
  draw(data, options );
}
​=


How do I make this work with the GWT Visualization interfaces?

Stuart

-- 
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-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



CustomScrollPanel issue (extra div overlays generated impacting performance?)

2012-03-29 Thread GWTter
Hi all,

I've used the CustomScrollPanel in order to implement some custom 
scrollbars, everything was working great until I added DnD (gwt-dnd, not 
native) functionality
to an element in the scrollpanel. The dragging action on the elements 
within is extremely laggy. After a good amount of testing I found that the 
issue had to do with
the CustomScrollPanel since using a regular ScrollPanel performs just fine 
with minimal lag if any. I then looked at what is generated for the 
customscrollpanel to 
work and found some divs had been generated which I couldn't attribute any 
specific functionality to (ITEMs 1  2 below). They're basically just 
overlaying the whole
scrollpanel area and deleting them with firebug did not affect the 
customscrollpanel functionality, but deleting them did improve the dnd 
performance considerably. I see that
the more elements that are layered between the mouse click and the target 
element affect the performance to a good degree.

My question is does anyone know if these extra DIVs are needed, and if so 
is there a way to workaround so I can still have the custom scroll bars 
with good DnD.

There's also a good reason for my using gwt-dnd over native.
I've been struggling with this for over a week now and it's driving me 
crazy, so hopefully someone can help. Thanks a lot in advance for any help 
and sorry for the long post.

The generated elements for the customscrollpanel are in the code below.

-Seth



div class=ScrollArea style=position: relative; overflow: hidden; 
 height: 600px;
 !-- this div is up to the upper left corner doing seemingly nothing 
 at all ITEM 3--
 div style=position: absolute; z-index: -32767; top: -20ex; width: 
 10em; height: 10ex;nbsp;/div !-- does not seem to be needed --
 div style=position: absolute; overflow: hidden; left: 0px; top: 0px; 
 right: -17px; bottom: -17px;
 div style=position: absolute; overflow: scroll; left: 0px; top: 
 0px; right: 0px; bottom: 0px;
 div class=GK40RFKDCB style=position: relative; min-width: 
 20px; min-height: 20px;
 
 !-- !!  
 ITEM 1--
 !-- this div seems to be doing nothing but overlaying --
 div style=visibility: hidden; position: absolute; 
 height: 100%; width: 100%; overflow: scroll;
 div style=height: 1324px; width: 1458px;/div
 /div
 
 !-- !! 
 ITEM 2--
 !-- this div seems to be doing nothing but overlaying --
 div style=visibility: hidden; position: absolute; 
 height: 100%; width: 100%; overflow: scroll;
 div style=width: 200%; height: 200%;/div
 /div
 div class=dragdrop-dropTarget dragdrop-boundary 
 style=position: relative; overflow: hidden;
 table cellspacing=0 cellpadding=0 border=0 
 style=width: 100%; table-layout: fixed;
 
 div class=testRed dragdrop-draggable 
 dragdrop-handle style=position: absolute; top: 900px; left: 500px;Hello 
 World/div
 /div
 /div
 /div
 /div
 !-- this div is the corner box bottom right which comes up when both 
 scrollbars are displayed --
 div style=position: absolute; overflow: hidden; right: 0px; bottom: 
 0px; width: 17px; height: 0px;
 div class=GK40RFKDII style=position: absolute; left: 0px; top: 
 0px; right: 0px; bottom: 0px;/div
 /div
 !-- this div seems to be the container for the bottom scroll bar but 
 it is disabled if not horizontal scroll is needed --
 div style=position: absolute; overflow: hidden; left: 0px; top: 0px; 
 right: 0px; bottom: 0px; display: none;
 div class=GK40RFKDDJ GK40RFKDCB style=height: 17px; position: 
 absolute; left: 0px; top: 0px; right: 0px; bottom: 0px;
 div class=GK40RFKDCJ GK40RFKDJI
 div class=GK40RFKDBJ/div
 /div
 /div
 /div
 !-- this is the div container for the scrollbar to the right --
 div style=position: absolute; overflow: hidden; top: 0px; right: 
 0px; bottom: 0px; width: 17px;
 div class=GK40RFKDAJ GK40RFKDCB style=width: 17px; position: 
 absolute; left: 0px; top: 0px; right: 0px; bottom: 0px;
 div class=GK40RFKDPI GK40RFKDLI
 div style=height: 1224px;/div
 /div
 /div
 /div
 /div


Thanks again.

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/kID-qZLB47UJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 

GWT Http Client Certificate Authentication

2012-03-29 Thread TopHat2071
Hi

I'm looking at using GWT to create a web client to access a RESTFul
based service. The RESTFul service uses https client authentication
(certificate), I can't find any mention about how to authenticate
using the GWT HTTP client. Does anyone know how to deal with ? or is
there another http client that I can use with GWT ?

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-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Serialization issues

2012-03-29 Thread Nialls Chavez
Hello, 

I am working on some code that will do serialization on a 
canvas(SmartGWT canvas)  so that it could be saved to the server in a 
database, I found some example code that I am using on how to do 
serialization in GWT but i keep getting the following error: 
[ERROR] [web_final] - Line 22: No source code is available for type 
com.google.gwt.user.server.rpc.impl.ServerSerializationStreamWriter; did 
you forget to inherit a required module?
[ERROR] [web_final] - Line 46: No source code is available for type 
com.google.gwt.user.server.rpc.SerializationPolicy; did you forget to 
inherit a required module?

and here is the code that is generating it: 

import com.google.gwt.core.client.GWT;

import com.google.gwt.user.client.rpc.SerializationException;

import com.google.gwt.user.client.rpc.SerializationStreamFactory;

import com.google.gwt.user.server.rpc.SerializationPolicy;

import com.google.gwt.user.server.rpc.impl.ServerSerializationStreamWriter;

import com.smartgwt.client.widgets.Canvas;

public class CanvasSerialize{

public CanvasSerialize() {}

public String doSerialize(Canvas canvasIn){

Class? responseClass = canvasIn.getClass();

// make a serialization policy of my own to use, normally 
deteremined by rpc request

ServerSerializationStreamWriter stream = 
newServerSerializationStreamWriter(
new SerializePolicy());

stream.prepareToWrite();

if (responseClass != void.class) {

 try {

stream.serializeValue(canvasIn, responseClass);

} catch (SerializationException e) {e.printStackTrace();}

}

String bufferStr = stream.toString();

return bufferStr;

}

public Canvas deSerialize(String buffer){

 SerializationStreamFactory ssf = GWT.create( Canvas.class);

Canvas decodedObject = null;

 try {

  decodedObject = (Canvas)ssf.createStreamReader( buffer ).readObject();

 } catch (SerializationException e) { e.printStackTrace();}

return decodedObject;

}

private class SerializePolicy  extends SerializationPolicy {

  @Override

public boolean shouldDeserializeFields(Class? clazz) {

return false;

}

@Override

public boolean shouldSerializeFields(Class? clazz) {

return false;

}

@Override

public void validateDeserialize(Class? clazz)

throws SerializationException {

}

@Override

public void validateSerialize(Class? clazz) 
throwsSerializationException {

}

}

}


I have this file inside the server package, but i am calling it client 
side, is that the  issue? any help would be greatly appreciated.


Thanks!

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/kQ51M3gcykoJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



There is no GWT under Window Builder

2012-03-29 Thread suleyman
Hello,

I am new to gwt and try to make a simple website with indigo.

I have installed gwt plugin and also window builder but when I
navigate to Window  Preferences  WindowBuilder,
there is no GWT there. Code parsing, eRCP, Swing, SWT and UI Toolkits
are all there but no GWT.

How can I make it appear?

Thanks in advance for any reply.

Best Regards,

-- 
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-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Gwt with Google Maps

2012-03-29 Thread diego moreno
I'm starting now with the GWT development, and need to develop an 
application that uses GWT Google Maps. I need something good explanation, 
because 
it's my first contact with this technology. So if someone tivem something 
useful!
Sorry for spelling errors, I'm using Google Translate

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/zQUF10sEam4J.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Fwd: help me please

2012-03-29 Thread Vaibhav Kale
i am student of m tech. i want do my project in gwt, GWT is new for me. so
i want your valuable guidance.
i am not understanding how can i start, i don't know anything about that, i
am beginner in GWT,
please suggest me some books or pdf to read, by reading these material i
can start development on my project.
my mobile no-  +91-8087712078

thank you in advance.

-- 
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-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Error on installation of GWT SDK

2012-03-29 Thread Neha Chandra

Hi,

When i am installing GWT sdk from this site http://dl.google.com/
eclipse/plugin/3.6 for helios then it gives following error:

An error occurred during the
org.eclipse.equinox.internal.p2.engine.phases.CheckTrust phase.
session context was:(profile=epp.package.jee,
phase=org.eclipse.equinox.internal.p2.engine.phases.CheckTrust,
operand=, action=).
Error reading signed content.
The file D:\Software\eclipse-jee-helios-SR1-win32\eclipse\features
\com.google.gwt.eclipse.sdkbundle.e36.feature_2.4.0.v201202290255-rel-
r36 does not exist

-- 
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-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



SQLite GTW (NOT MOBILE/ANDROID)

2012-03-29 Thread misteralex
Hello,

I'm working with SQLite and I tried standard driver sqlite-jdbc for java 
application.  
When try to work with GWT Application there are problems. 

How to work correctly with SQLite ?

I saw that Gears Project isn't good way because the main street now is 
HTML5.
I tried to use driver gwt-jdbc-html5 but without success... 

What to do? I want to use SQLite in normal web site. Not mobile application.

Many thanks in advance

 

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/P4Sy7_nWnnwJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: GWT Dev plug-in for Firefox 11

2012-03-29 Thread Mallesh SGowda
hi ,

help me about GWT portlets,

thanking you

With regards
Mallesh

-- 
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-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Background image

2012-03-29 Thread LincMii
This did not work for me ... I am trying to apply this style to a canvas 
but for some reason the image just won't show.

On Monday, October 20, 2008 11:47:32 AM UTC-10, Bryan wrote:

 hey there, 

 You can just add a css style to any panel.  For instance, i used 
 firebug to change the style on the box above so that there is a 
 repeating background image of the google logo.  The style looks like 
 this.  Screenshot 
 http://drop.io/pytdu4r/asset/​background-repeathttp://drop.io/pytdu4r/asset/background-repeat
  

 .cb { 
background-image:url(http://​www.google.com/intl/en_ALL/​images/ 
 logo.gif http://www.google.com/intl/en_ALL/images/logo.gif); 
 } 

 In the gwt code, you would have something like this: 
 SimplePanel container; 
 container.setStyle(cb) 

 later, 
 bryan 

 On Oct 20, 7:56 am, S. Oomes ulvengangs...@gmail.com wrote: 
  Hello everyone, 
  
  I ám currently checking out GWT and im really impressed. The only 
  thing i ren into was the fact that i did'nt get a background image in 
  the application i was making. I want to use instead of the white 
  background a image i made. It must repeat in the complete page as 
  background. Is this possible to do and how do i do that. 
  
  I dont have any experience at all with java but im going to learn that 
  in my 4 semester (don't now the correct name) on my school. So if some 
  one knows the awnser please explain exact where i need to place the 
  code or code's. When you, the responder to this artikle, are dutch you 
  can  mail me the dutch explanation in dutch. Or post it here when this 
  is allowed of course! 
  
  I'm looking forward to hear from you, 
  
  Greetings S. Oomes

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/CXTU6e3loB0J.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



SQLite and GWT (NOT MOBILE)

2012-03-29 Thread misteralex
Hello everyone

*I'm searching for solution to use SQLite database with GWT from desktop. *
*I mean for Web Application (NOT MOBILE/ANDROID)*

I'm trying driver gwt-html5-database for HTML5 rather API Gears because 
Google
shifting their focus from Gears to HTML5.

What to do to implement correctly SQLite management ?

Someone can help me?

Many thanks
Alex



-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/dPHIkCryV0MJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Autobeans, JSON and root maps, lists

2012-03-29 Thread Skitch
From the documentation it seems that Autobeans do not support JSON
with root maps and lists.  Is there a way around this?  The way we are
developing, enclosing objects with top-level paths is kind of ugly.  I
would never see why you would want to wrap a list with a single top
level object attribute, like the example:

{cities: [ 1, 2]}

-- 
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-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



How to fire an event (storageEvent) in all windows and browser tabs.

2012-03-29 Thread Pascal Pascal
Greetings,
I want to trigger an event (storageEvent) that it fire on all windows
and browser tabs (Google Chrome 17.0.963.83 m).
I try the following demo code:

stockStore = Storage.getLocalStorageIfSupported();

if (stockStore != null) {
  stockStore.addStorageEventHandler(new StorageEvent.Handler() {
  public void onStorageChange(StorageEvent event) {
lastStockLabel.setText(Last Update: +event.getNewValue() +: 
+event.getOldValue() +:  +event.getUrl());
  }
});

@Override
public void onClick(ClickEvent event) {
if (stockStore != null) {
stockStore.setItem(key1, test);
}
}

@Override
public void onClick(ClickEvent event) {
if (stockStore != null) {
stockStore.removeItem(key1);
}
}

The events are triggered but only in the current browser window.
How to fire an event (storageEvent) in all windows and browser tabs.

Thank you very much for your help.
Pascal

-- 
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-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



CustomScrollPanel Issue (extra overlay DIVs causing performance issue)

2012-03-29 Thread sethGWT
Hi all,

I've been using the CustomScrollPanel in order to implement my own 
scrollbars. Everything was working fantastic up until I added DnD (gwt-dnd, 
not native) to the elements within the scrollpanel. I noticed that there's 
a huge lagging issue while dragging (updating the element's position 
properties) within the panel. Upon further investigation with firebug I saw 
that there are 2 divs in particular which are overlayed over the content of 
the customscrollpanel which are contributing greatly to the performance 
issue. I deleted these two extra elements in firebug and saw that no 
functionality had been compromised with the panel and on top of the that 
the performance of the dnd improved drastically. 

What I found in testing for the html generated for the CustomScrollPanel 
can be found below, I added my comments to add some identification.

My question is: does anyone know if there's a purpose for these DIVs, and 
if they are essential, is there a workaround so I can have custom 
scrollbars without impacting the dnd performance? And if they're not 
essential, why are they there? 

Also I found that for every nested DIV between your click and your element 
to drag effects performance, are the 3 nested divs all necessary for custom 
scrollbar functionality?

Thanks so much for any help in advance, and sorry for the long post, I've 
just been trying to figure this out for the past week, a lot of hair pulled 
:).

-Seth

div class=ScrollArea style=position: relative; overflow: hidden; 
height: 600px;
!-- this div is up to the upper left corner doing seemingly nothing at 
all --
div style=position: absolute; z-index: -32767; top: -20ex; width: 
10em; height: 10ex;nbsp;/div !-- I also found no purpose for this --
div style=position: absolute; overflow: hidden; left: 0px; top: 0px; 
right: -17px; bottom: -17px; !-- DIV 1 --
div style=position: absolute; overflow: scroll; left: 0px; top: 
0px; right: 0px; bottom: 0px; !-- DIV 2 --
div class=GK40RFKDCB style=position: relative; min-width: 
20px; min-height: 20px; !-- DIV 3 --
!-- this div seems to be doing nothing but overlaying --
div style=visibility: hidden; position: absolute; height: 
100%; width: 100%; overflow: scroll;
div style=height: 1324px; width: 1458px;/div
/div
!-- this div seems to be doing nothing but overlaying --
div style=visibility: hidden; position: absolute; height: 
100%; width: 100%; overflow: scroll;
div style=width: 200%; height: 200%;/div
/div
div class=dragdrop-dropTarget dragdrop-boundary 
style=position: relative; overflow: hidden;
table cellspacing=0 cellpadding=0 border=0 
style=width: 100%; table-layout: fixed;

div class=testRed dragdrop-draggable dragdrop-handle 
style=position: absolute; top: 900px; left: 500px;Hello World/div
/div
/div
/div
/div
!-- this div is the corner box bottom right which comes up when both 
scrollbars are displayed --
div style=position: absolute; overflow: hidden; right: 0px; bottom: 
0px; width: 17px; height: 0px;
div class=GK40RFKDII style=position: absolute; left: 0px; top: 
0px; right: 0px; bottom: 0px;/div
/div
!-- this div seems to be the container for the bottom scroll bar but 
it is disabled if not horizontal scroll is needed --
div style=position: absolute; overflow: hidden; left: 0px; top: 0px; 
right: 0px; bottom: 0px; display: none;
div class=GK40RFKDDJ GK40RFKDCB style=height: 17px; position: 
absolute; left: 0px; top: 0px; right: 0px; bottom: 0px;
div class=GK40RFKDCJ GK40RFKDJI
div class=GK40RFKDBJ/div
/div
/div
/div
!-- this is the div container for the scrollbar to the right --
div style=position: absolute; overflow: hidden; top: 0px; right: 0px; 
bottom: 0px; width: 17px;
div class=GK40RFKDAJ GK40RFKDCB style=width: 17px; position: 
absolute; left: 0px; top: 0px; right: 0px; bottom: 0px;
div class=GK40RFKDPI GK40RFKDLI
div style=height: 1224px;/div
/div
/div
/div
/div

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/53x9guq2uZsJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Avoid duplicate image when using Datastore API

2012-03-29 Thread inter
Hi, I was just wondering, is there a way to avoid duplicate image when
using Datastore API? I can upload an image with no problem using the
example from
http://ikaisays.com/2010/09/08/gwt-blobstore-the-new-high-performance-image-serving-api-and-cute-dogs-on-office-chairs/
. But, I don't want to have duplicate image, any help please?

-- 
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-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: There is no GWT under Window Builder

2012-03-29 Thread Eric Clayberg (Google)
You would need to install GWT Designer.

On Wednesday, March 28, 2012 2:59:57 AM UTC-4, suleyman wrote:

 Hello, 

 I am new to gwt and try to make a simple website with indigo. 

 I have installed gwt plugin and also window builder but when I 
 navigate to Window  Preferences  WindowBuilder, 
 there is no GWT there. Code parsing, eRCP, Swing, SWT and UI Toolkits 
 are all there but no GWT. 

 How can I make it appear? 

 Thanks in advance for any reply. 

 Best Regards,

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/N0Y_aQqFVgkJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Run As Web Application acts like Debug As Web Application

2012-03-29 Thread Dee Ayy
Tried the simple
https://developers.google.com/eclipse/docs/getting_started in Safari
5.1.4 and Firefox 11.0 on OSX Snow Leopard 10.6.8 using Eclipse Indigo
Classic 3.7.2.

Both tell me: Development Mode requires the Google Web Toolkit Developer Plugin

How do I get Production Mode?

Maybe my problem is that I think Debug As means Development Mode
run and Run As means Production Mode run?

This is a brand new install of Indigo and GWT.  Although I installed:
http://dl.google.com/eclipse/inst/d2gwt/latest/3.7 expecting the full
version rather than the lightweight version of GWT Designer; and
http://dl.google.com/eclipse/plugin/3.7 selecting only the SDK (no
AppEngine) and the Plugin -- ALTHOUGH I STILL SEE AppEngine files!

Regards.

-- 
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-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Aspect Security / Sonatype Study - GWT Vunlerabilities

2012-03-29 Thread Joseph Lust
They appear to be companies using antiquated software and GWT being called 
out is a bit of sensationalist cry by the authors. For example, they place 
in their chart GWT at the top, not GWT 1.6/7. That is to say that not 
all GWT applications are vulnerable, just the really old, rot in place 
ones. They also call out SpringMVC 2.5.6, while we're rocking on 3.0.10 
these days.

https://lh3.googleusercontent.com/-QEuVOz89SWM/T3TCpy8L4uI/Bo0/tF2aR6T5iJ8/s1600/Selection_009.png


The gaping omission of the article is that most such *Global 500* firms 
software development is for *internal components*. If at my office and most 
others, we don't see an internal meeting scheduling app written in GWT 1.6 
to be a serious issue. However, client/external facing applications are a 
whole different can of beans which have many rounds of reviews before 
release and continuing audits. I'd estimate only 5% of our applications are 
externally visible, and the real number is likely lower than that.

Another omission is that many libraries are used for testing. Such 
libraries are consumed at compilations testing time and don't get pushed 
out into the production application. As such, they are much less likely to 
be maliciously exploited.


It's also why I constantly check for updates to core libraries and why all 
our POM's have a series of properties at the top such as the following so 
that dozens of dependencies can be upgraded in a single character change.

spring.framework.version3.0.7.RELEASE/spring.framework.version


The real take away message is that Maven needs an audit feature to check 
your POM for known vulnerabilities, say at compile time.



Sincerely,
Joe

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/VFBOiAE3m2IJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



How to get text from textarea as html

2012-03-29 Thread Deepak Singh
Hi,

I have a Textarea and i want to get the text written from this in the same
same format as user has entered.
Means, with spaces and line breaks same as user has entered.
How can i achieve this ?

Currently it gives the text without line breaks with textarea.getText().

Thanks
Deepak Singh

-- 
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-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Maven compilatiion error

2012-03-29 Thread Hilco Wijbenga
On 22 March 2012 16:36, developer avka...@gmail.com wrote:
 [INFO]             [ERROR] Unable to find type
 'com.mycompany.web.dmt.gwt.client.DmtGwt'

It seems you are missing a JAR (pom.xml) and/or a GWT module (*.gwt.xml).

-- 
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-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Aspect Security / Sonatype Study - GWT Vunlerabilities

2012-03-29 Thread Geoffrey Wiseman
On Thursday, March 29, 2012 4:23:17 PM UTC-4, Joseph Lust wrote:

 They appear to be companies using antiquated software and GWT being called 
 out is a bit of sensationalist cry by the authors. For example, they place 
 in their chart GWT at the top, not GWT 1.6/7. That is to say that not 
 all GWT applications are vulnerable, just the really old, rot in place 
 ones. They also call out SpringMVC 2.5.6, while we're rocking on 3.0.10 
 these days.


Yeah, I wish I had more information on how they derived those numbers and 
what they mean. Do those numbers for GWT only include those versions that 
had reported vulnerabilities, and which ones? Being able to trace their 
chart back to specific details would be useful, because without that I'm 
not sure how much weight to put on their results.
 

 The gaping omission of the article is that most such *Global 500* firms 
 software development is for *internal components*. If at my office and 
 most others, we don't see an internal meeting scheduling app written in GWT 
 1.6 to be a serious issue. However, client/external facing applications are 
 a whole different can of beans which have many rounds of reviews before 
 release and continuing audits. I'd estimate only 5% of our applications are 
 externally visible, and the real number is likely lower than that.


Yes, that's certainly something to consider; although ideally you wouldn't 
be using components with known vulnerabilities internally, the risk of 
doing so is somewhat lower.
 

 The real take away message is that Maven needs an audit feature to check 
 your POM for known vulnerabilities, say at compile time.


Although it's often the technology management that wants the audit 
features, not the individual developer -- that's why the repository-level 
oversight has some appeal for some organizations, I think.

  - Geoffrey

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/NFXatA0yUpoJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Printing with RootPanel vs RootLayoutPanel

2012-03-29 Thread Ted
Hello,

I have a GWT page created with UiBinder that I want to print.  The top 
level element is a g:ScrollPanel with g:VerticalPanel.  When I add the view 
to RootPanel I can print it just fine.  When I add to RootLayoutPanel and 
try to print, I only get a blank page.

Does anyone know why this might be the case?

Thanks.

Ted

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/D-wbVGhBv1QJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Errer after GWT 2.4 upgrade.

2012-03-29 Thread jhulford
Chrome Frame shouldn't even be reporting itself in the user agent string if 
it's disabled.

See here...http://code.google.com/p/google-web-toolkit/issues/detail?id=6665

I believe you could actually override the standard user agent property 
selector with your own and make it not look for chrome frame in the UA 
string if you needed to handle buggy chrome frame installs.

On Wednesday, March 28, 2012 11:57:01 AM UTC-5, skippy wrote:

 Just some more details on the problems. 

 This is when you use IE8 with Crome-Frame installed but not enabled. 
 We recommend Crome-Frame for our application because of the poor 
 performance of IE and grid tables. 

 This looks like an old problem, yet little activity to correct it. 

 I have tried the changes to the module xml file with no luck. 

 Any help would be great! 


 On Mar 28, 10:31 am, skippy al.leh...@fisglobal.com wrote: 
  Looks like my problem is related to the Crome-Frame installed but 
  disabled, 
  I have not seen a complete workaround.  Does anyone have an update? 
  
   Issue 6665:GWT2.4RC applies wrong DOMImpl with disabled chrome 
 frame 
  
  On Mar 27, 3:31 pm, skippy al.leh...@fisglobal.com wrote: 
  
  
  
   I upgraded to GWT 2.4.0 from 2.3.0 
  
   When I try running the onload, I get a js error and a blank page. 
  
   Object does not support in the cache.html.  I have cleared my cache 
   just for fun. 
  
   After compiling the source in Detailed mode, This is the error: 
  
   Webpage error details 
  
   User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; 
 Trident/ 
   4.0; chromeframe/17.0.963.83; SLCC2; .NET CLR 2.0.50727; .NET CLR 
   3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2; MS-RTC 
   LM 8; .NET CLR 1.1.4322; Tablet PC 2.0) 
   Timestamp: Tue, 27 Mar 2012 20:18:01 UTC 
  
   Message: Object doesn't support this property or method 
   Line: 72280 
   Char: 3 
   Code: 0 
   URI:
 http://localhost:8080/tdcb/tdcb/326F857FA6DED4A25577CB9F21813982.cach... 
  
   Line 72280 is: 
  
$wnd.addEventListener($intern_962, 
   
 com_google_gwt_user_client_impl_DOMImplStandard_dispatchCapturedMouseEvent, 
   true); 
  
   I seems to happen just after a few RPC calls. 
  
   The last thing my entry point does is this JNSI init: 
  
   private native void initNativePrintExportJSMethods(PrintExport 
   pe) /*-{ 
   $wnd.printExport = function (screenDef,Action,addParms) { 
  
   
 p...@com.fis.tdcb.gwt.client.util.PrintExport::processAction(Ljava/lang/ 
   String;Ljava/lang/String;Ljava/lang/String;)(screenDef,Action, 
   addParms); 
  
   }; 
   }-*/; 
  
   Any help would be great!  We need this upgrade to us the Data Grid 
   with sorting headings.- Hide quoted text - 
  
  - Show quoted text -


On Wednesday, March 28, 2012 11:57:01 AM UTC-5, skippy wrote:

 Just some more details on the problems. 

 This is when you use IE8 with Crome-Frame installed but not enabled. 
 We recommend Crome-Frame for our application because of the poor 
 performance of IE and grid tables. 

 This looks like an old problem, yet little activity to correct it. 

 I have tried the changes to the module xml file with no luck. 

 Any help would be great! 


 On Mar 28, 10:31 am, skippy al.leh...@fisglobal.com wrote: 
  Looks like my problem is related to the Crome-Frame installed but 
  disabled, 
  I have not seen a complete workaround.  Does anyone have an update? 
  
   Issue 6665:GWT2.4RC applies wrong DOMImpl with disabled chrome 
 frame 
  
  On Mar 27, 3:31 pm, skippy al.leh...@fisglobal.com wrote: 
  
  
  
   I upgraded to GWT 2.4.0 from 2.3.0 
  
   When I try running the onload, I get a js error and a blank page. 
  
   Object does not support in the cache.html.  I have cleared my cache 
   just for fun. 
  
   After compiling the source in Detailed mode, This is the error: 
  
   Webpage error details 
  
   User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; 
 Trident/ 
   4.0; chromeframe/17.0.963.83; SLCC2; .NET CLR 2.0.50727; .NET CLR 
   3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2; MS-RTC 
   LM 8; .NET CLR 1.1.4322; Tablet PC 2.0) 
   Timestamp: Tue, 27 Mar 2012 20:18:01 UTC 
  
   Message: Object doesn't support this property or method 
   Line: 72280 
   Char: 3 
   Code: 0 
   URI:
 http://localhost:8080/tdcb/tdcb/326F857FA6DED4A25577CB9F21813982.cach... 
  
   Line 72280 is: 
  
$wnd.addEventListener($intern_962, 
   
 com_google_gwt_user_client_impl_DOMImplStandard_dispatchCapturedMouseEvent, 
   true); 
  
   I seems to happen just after a few RPC calls. 
  
   The last thing my entry point does is this JNSI init: 
  
   private native void initNativePrintExportJSMethods(PrintExport 
   pe) /*-{ 
   $wnd.printExport = function (screenDef,Action,addParms) { 
  
   
 p...@com.fis.tdcb.gwt.client.util.PrintExport::processAction(Ljava/lang/ 
   String;Ljava/lang/String;Ljava/lang/String;)(screenDef,Action, 
   addParms); 
  
   

Re: Errer after GWT 2.4 upgrade.

2012-03-29 Thread JoseM
Do you have any more details on how to do that exactly? 

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/-xoaN8UN1vYJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Listening for ScrollBars from Browsers :: Dynamic Resize

2012-03-29 Thread Ashton Thomas
Thanks guys,

I am trying to go for smooth as possible so, Thomas, looks like I will have 
to go with the y-overflow solution. My main priority would be instant 
updating instead of a almost constant or periodic check. I would like to 
handle it at the highest level possible instead of as a widget is adding 
content.. Oh well, it would be nice to see some event being fired when the 
scroll bars are added by the browser. oh well :(

Thanks for the help!
-Ashton


On Thursday, March 29, 2012 4:24:51 AM UTC-4, Jens wrote:

 Not sure if it could help you, but you can detect if a scroll bar is 
 visible by checking ScrollPanel.getMaximumVerticalScrollPosition(). If its 
 greater than 0 the scroll bar is visible.

 So while adding your content into the ScrollPanel you could constantly 
 check this value and if its greater than 0 you could maybe schedule a 
 finally or deferred command that calls layout.onResize() manually?

 I have done something similar for a table like widget where I wanted to 
 reposition a right aligned, fixed width column header when the vertical 
 scrollbar of the table's content area gets visible. The scrollbar has 
 pushed the contents to the left so I had to reposition the column header 
 scrollbar-width pixels to the left to keep header + column visually in 
 sync.

 -- J.


 Am Mittwoch, 28. März 2012 20:44:03 UTC+2 schrieb Ashton Thomas:

 I have a layout that dynamically resizes via:
 Window.addResizeHandler(new ResizeHandler() {


 However, this is NOT fired when the browsers adds the scroll bars once 
 the UI has dynamically added content to extend the browser's screen

 So my app is fine when it first loads and the content doesn't go below 
 the viewport; however, once the content goes below the browsers 
 automatically adds its scrollbars but a resize event is not fired.

 This is a problem because the width of the scrollbars also causes the 
 bottom horizontal scrollbars to show.


 I appreciate your thoughts! Thanks!





-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/5cGF7W4rLC0J.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



2.4 RPC failure

2012-03-29 Thread John Malpas
I have several apps out there written in GWT 2.4
Over the last few months, users have started to complain
about seemingly random RPC failures, both reading and writing.
I have never yet experienced these errors from my own computer,
but there are enough users writing in about it that
it seems that there must be something going wrong -- not just
one user with a questionable internet connection.

The manifestation in the onFailure() method of an AsyncCallback
is usually
  com.google.gwt.user.client.rpc.StatusCodeException: 0

I found one cooperative user who has been willing to beat on the
apps for me and send me results.He gets the errors with Firefox 8, IE 8,
and Chrome.When the RPC calls work, I see custom log messages in
the tomcat log. When the calls do not work, I see no evidence of any 
activity
in either the tomcat log or the apache log, so it appears that the RPC
calls are not reaching the server.

This morning I changed one of the apps to include a symbol table,
and to print out a stack trace in a dialog when the failure happens, and 
then
asked my precious user to try it. He sent back this stack trace,
copied from the dialog:

fail to write
CAUGHT com.google.gwt.user.client.rpc.StatusCodeException: 0
0 : Unknown.Em(StackTraceCreator.java:168)
1 : Unknown.Jl(StackTraceCreator.java:421)
2 : Unknown.RF(StatusCodeException.java:35)
3 : Unknown.bH(RequestCallbackAdapter.java:209)
4 : Unknown.bs(Request.java:287)
5 : Unknown.Bs(RequestBuilder.java:395)
6 : Unknown.anonymous(XMLHttpRequest.java:287)
7 : Unknown._l(Impl.java:168)
8 : Unknown.cm(Impl.java:213)
9 : Unknown.anonymous(Impl.java:57)

In broad strokes, I understand that the exception is
thrown because the browser is unable to do an XMLHttpRequest.
But more than that, why? I have looked up the line references
in the 2.4 source modules mentioned in the stack trace above,
but am still at a loss. The last one is this:

 public final native void setOnReadyStateChange(ReadyStateChangeHandler 
handler) /*-{
// The 'this' context is always supposed to point to the xhr object in 
the
// onreadystatechange handler, but we reference it via closure to be 
extra sure.
var _this = this;
this.onreadystatechange = $entry(function() {
 287: 
handl...@com.google.gwt.xhr.client.ReadyStateChangeHandler::onReadyStateChange(Lcom/google/gwt/xhr/client/XMLHttpRequest;)(_this);
});
  }-*/;

Any suggestions would be greatly appreciated.

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/2TVvDKQzwkkJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: [gwt-contrib] Re: FF11 Devmode Plugin (issue1667803)

2012-03-29 Thread joel meza baca
very good

On Fri, Mar 23, 2012 at 3:36 PM, con...@google.com wrote:

 LGTM

 http://gwt-code-reviews.**appspot.com/1667803/http://gwt-code-reviews.appspot.com/1667803/

 --
 http://groups.google.com/**group/Google-Web-Toolkit-**Contributorshttp://groups.google.com/group/Google-Web-Toolkit-Contributors




-- 
nyxjoel http://www.nyxjoel.tk/

-- 
http://groups.google.com/group/Google-Web-Toolkit-Contributors