Re: GWT Chrome dev OOPHM is Slow. What is the roadmap?

2011-11-27 Thread Tom Carchrae
I'm curious to know why this is a priority for you? I use Firefox for development and it's a perfectly workable solution for me. What does Chrome give you that you need for GWT development? Tom On Mon, Nov 28, 2011 at 5:53 AM, Brandon Donnelson wrote: > If you haven't already starred the iss

Re: GWT Chrome dev OOPHM is Slow. What is the roadmap?

2011-11-27 Thread Brandon Donnelson
If you haven't already starred the issue, please star it. http://code.google.com/p/google-web-toolkit/issues/detail?id=6813 They have begun working on it too. I agree Firefox is faster as of now. On Nov 27, 2011 6:39 PM, "Strelok" wrote: > Latest ChromeDev (17.0.942.0 dev-m) is unbearably slow. I

Re: Gwt celltable : Unexpected behavior : when record deleted from page then other record repeated in page.

2011-11-27 Thread vaibhav gwt
Any Idea How to resolve this issue ? On Nov 15, 10:11 pm, vaibhav gwt wrote: > I also called > updateRowData(startIndexOfPage, recordList); > updateRowCount(updatedRecordCount, true); > > Still same issue :-| > > On Nov 15, 6:01 pm, vaibhav bhalke wrote: > > > > > > > > > Hi, > > I am using cell

Re: a mistake when set backgroun-color value

2011-11-27 Thread Gal Dolber
try with backgroundColor, also you don't need to use static methods hp.getElement().getStyle().setBackgroundColor("red"); On Mon, Nov 28, 2011 at 12:44 AM, wahaha wrote: > i write these code : > > >

Re: GWT Chrome dev OOPHM is Slow. What is the roadmap?

2011-11-27 Thread Strelok
Latest ChromeDev (17.0.942.0 dev-m) is unbearably slow. I've given up on Chrome now. Only Firefox is any good on Windows. -- 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/

a mistake when set backgroun-color value

2011-11-27 Thread wahaha
i write these code : - HorizontalPanel hp=new HorizontalPanel(); Label lbl=new Label("a"); hp.add(lbl);

Re: how to check if the input

2011-11-27 Thread Bruce Zu
please ignore this topic !! seems it is published by wrong operation before I finished editing it . sorry for that!! On Nov 28, 10:48 am, Bruce Zu wrote: > background: > there is  a  variable  : " NpTextBox createTxt " > there is  a button, by  default   thisButton.setEnabled(false). > > what lo

about input event of NpTextBox

2011-11-27 Thread Bruce Zu
GWT version:2.3.0 background: there is a variable : " NpTextBox createTxt " there is a button, by default thisButton.setEnabled(false). what logic I want : when user put something into createTxt. I will " thisButton.setEnabled(true)." user may type or middle click the mouse to

how to check if the input

2011-11-27 Thread Bruce Zu
background: there is a variable : " NpTextBox createTxt " there is a button, by default thisButton.setEnabled(false). what logic I want : when user put something into createTxt. I will " thisButton.setEnabled(true)." user may type or middle click the mouse to paste something i

Include google calendar into an existing gwt application

2011-11-27 Thread hugues2
Hi, Maybe obvious but I'd like to add a google calendar into an existing application. Basic use case is the following : - User logs-in via the gwt application (verification is already done through Oauth2 on the back-end) - The menu is displayed via different possibilities including showing the

Re: How to implement admin features/sections in app

2011-11-27 Thread Craig Hawkins
Hi Drew Secure your server/servlets first and UI second. Make sure all incoming calls to the server tier deny unauthorized users access to execute administrative operations. When you do this you don't have to worry if the user attempts an admin activity in the UI because they will be denied in t

CellTable Selection advice needed

2011-11-27 Thread Cassio
Hey, I have recently started working into GWT and directly run in a problem: I want to make a week scheduler and after searching for a way to display the dates I found the CellTable. So I wanted to have each column of the table represent a day and each row a timespan. Also when clicking on a cel

GWT Event Bus basics

2011-11-27 Thread Alex Tretyakov
Hello! I have created a post about creating a simple GWT app that uses Event Bus: http://alextretyakov.blogspot.com/2011/11/gwt-event-bus-basics.html -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to goog

How to access gtalk friend list in google web tookit?

2011-11-27 Thread sunny bansal
Hi, I am builing an application using GWT. I want to access the friend list/emailids of the user who is logged into the application using his gmail account. How I can achieve this? Any help will be appreciated. Regards Sunny -- You received this message because you are subscribed to the Google

shall we define a HorizontalPanel in ui.xml?

2011-11-27 Thread wahaha
in ui.xml,should we define a HorizontalPanel with some sub widget in it? i fond that the HorizontalPanel class does not extend the Composit class,so it does not have a initWidget() method. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To

Help with ClientBundle: neighbour @sprite offsets dependencies

2011-11-27 Thread Vitrums
I've got 5 sprites in a row. How can I get left offsets for the 3rd and 4th elements using early binding? I'm trying to do something like calculate a sum of 1st and 2nd images widths, using value('imageResource.getWidth','px') function or anything of that kind... but didn't manage to find any s

Re: Problem in viewing ui.xml in designer mode.

2011-11-27 Thread Eric Clayberg (Google)
You have a JDK version mismatch between the JDK you are using to run Eclipse and the one you are using to compile your code. Make sure you are running Eclipse with the latest JDK. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view t

Re: Adding Buttons to DialogBox

2011-11-27 Thread Ovidiu Mihaescu
Any reason you're using DOM and Element to do this? Why not just setWidget(2,1,okButton)? Vid On Fri, Nov 25, 2011 at 7:37 AM, John Maitland wrote: > Could anyone suggest why the Click Event doesn't fire in the following > example code? > > Many thanks > > John > > public class OKDialog extends

Re: Datepicker with multiselect

2011-11-27 Thread Deepak Singh
Hi Eric, I also need this multi select datepicker. Can release the component or send the source code to us. Thanks Deepak On Mon, Jun 27, 2011 at 5:54 PM, Dmitry Tikhomirov wrote: > Hi Erik, > > Have you realese your multi-select DatePicker ? > > Thanks > > > > > 17.05.2011, в 21:09, Erik Uzure

Re: Reusing widgets across mvp views

2011-11-27 Thread Thomas Lefort
Hi Thanks. You are probably right. It's really the model I want to reuse and not the presentation. It's just handy sometimes to reuse the same widget. Anyway, I sorted it out, for the time being, by calling a view interface method in my activity start method that reattaches those common widgets to