Problems debugging client code using IntelliJ

2013-02-16 Thread dhoffer
I have been using IntelliJ for GWT development for a long time but every once in a while I can't debug the client code when run in hosted mode using IntelliJ, all the breakpoints are ignored. (Server side breakpoints work fine.) I'm using GWT 2.4/2.5 and IntelliJ 11.1.5, JDK (x64) 1.7 build 13. I

Re: Updating GWT Pie Chart Dynamically

2013-02-16 Thread Michael Hirsch
On Feb 15, 2013 1:02 PM, "abhishek sharma" wrote: > > Hi all, > > SFTB . I have a scenrio as follows:- > 1) The pie chart has to be updated every 30 seconds. > 2) The data for the pie chart is to be fetched by HTTP. > > I am able to receive the data through HTTP and parse it. However I am not able

DataGrid - How to scroll latest added item into view?

2013-02-16 Thread membersound
Hi, I add a new entry to a DataTable and want to scroll it into the view, as it is added at the end of the list. @UiHandler("buttonAdd") { onAdd(ClickEvent evt) { Foo foo = new Foo(); dataProvider.getList().add(foo); dataGrid.getRowElement(dataProvider.getList().indexOf(foo)).scrollIntoVi

DataGrid - How to scroll latest added item into view?

2013-02-16 Thread membersound
Hi, I add a new entry to a DataTable and want to scroll it into the view, as it is added at the end of the list. @UiHandler("buttonAdd") { onAdd(ClickEvent evt) { Foo foo = new Foo(); dataProvider.getList().add(foo); dataGrid.getRowElement(dataProvider.getList().indexOf(foo)).scrollIntoVi

DataGrid vertical scrollbar overlays column

2013-02-16 Thread membersound
Hi, I have a DataGrid, but when I add more elements than displayable in it, I get a vertical scrollbar that overlays(!) the last column in parts. How can I make the DataGrid instead shrink accordingly (modify the size of the columns in Percent somehow accordingly to the size the scrollbar takes)

Re: ANN: GWT and OAuth Login demo with facebook, google etc.

2013-02-16 Thread Juan Pablo Gardella
Thanks for share!! 2013/2/16 muquit > I needed to add OAuth login to a GWT app of mine but could not find > anything nice. So I wrote an application to explore the idea. I am > releasing the code with the hope that you will find it useful. > > The URL is: http://code.google.com/p/gwtoauthlogind

Re: How Java Threads are mapped into Javascript?

2013-02-16 Thread membersound
You could write a Timer and fetch the Resources eg via RPC from your server (or elsewhere). Am Samstag, 16. Februar 2013 16:09:34 UTC+1 schrieb Faissal Graviton: > > Hello, > > I'd like to use some Java Threads to pull some Resources and I'm wondering > how they are mapped into Javascript? > > T

How to veto a doubleclick on a DataGrid if click was in cell?

2013-02-16 Thread membersound
Hi, I have a DataGrid with height="100%". Now if the grid is mostly blank and the user doubleclicks on an empty area of the grid, I want to perform a specific action. But if the user doubleclicks an existing cell, I want to veto this action. DoubleClickHandler dblClickHandler = new Doub

Re: How Java Threads are mapped into Javascript?

2013-02-16 Thread Alain Ekambi
They are mot mapped at all. JS is single threaded. 2013/2/16 Faissal Graviton > Hello, > > I'd like to use some Java Threads to pull some Resources and I'm wondering > how they are mapped into Javascript? > > Thank you, > > -- > You received this message because you are subscribed to the Googl

How Java Threads are mapped into Javascript?

2013-02-16 Thread Faissal Graviton
Hello, I'd like to use some Java Threads to pull some Resources and I'm wondering how they are mapped into Javascript? Thank you, -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails f

ANN: GWT and OAuth Login demo with facebook, google etc.

2013-02-16 Thread muquit
I needed to add OAuth login to a GWT app of mine but could not find anything nice. So I wrote an application to explore the idea. I am releasing the code with the hope that you will find it useful. The URL is: http://code.google.com/p/gwtoauthlogindemo/ Thanks -- You received this message be

How to disable paging for a CellTable?

2013-02-16 Thread membersound
Hi, how can I disable paging for a CellTable? I want to show all data in that table without limiting the size, to always show new entries at the bottom no matter how many are created. Would I have to initial create a new CellTable(1000, resource, keyProvider)?So with a big initial size? Probab

Which panel can take a DoubleClickHandler?

2013-02-16 Thread membersound
Hi, is there any panel that has a addDoubleClickHandler() Method? I want to use similar to the following, but apply it to a panel instead of a lable: @UiField Label label; @UiHandler("label") onDoubleLabel(DoubleClickEvent event) { //... } Which panel can I apply the same code on? -- You

CellTable - how to change icon positon?

2013-02-16 Thread membersound
Hi, I have a custom CellTable which overrides most styles from the gwt celltable. But how can I override the alignment of the sort icon? I could not find any css class in the gwt CellTable.css defining an alignment for the sort icon. I just wan to display it right beneath the header text (inste

Re: Integrating compiled modules GWT at runtime

2013-02-16 Thread Jeffrey Chimene
On 02/16/2013 04:46 AM, vanessa vanessa wrote: > Hi team, > > I have been searching the possibility to integrate > some *compiled* *GWT components* in your web application > at runtime, but i didn't find my need. > Is there any solutions in GWT ? > > Any help will be deeply apprecited . > Thanks

Re: Digest for google-web-toolkit@googlegroups.com - 25 Messages in 13 Topics

2013-02-16 Thread Rick Fisher
OpoplrqwweetrrrtwqXxxwweee Sent from my iPhone On Feb 15, 2013, at 1:04 PM, google-web-toolkit@googlegroups.com wrote: > Today's Topic Summary > Group: http://groups.google.com/group/google-web-toolkit/topics > > Updating GWT Pie Chart Dynamically [1 Update] > How to i

Re: Updating GWT Pie Chart Dynamically

2013-02-16 Thread Ümit Seren
It would helpful if you post some code you tried so far. On Friday, February 15, 2013 8:50:23 PM UTC+1, abhishek sharma wrote: > > Hi all, > > SFTB . I have a scenrio as follows:- > 1) The pie chart has to be updated every 30 seconds. > 2) The data for the pie chart is to be fetched by HTTP. > >

Re: GWT 2.5.1-rc1 available

2013-02-16 Thread Ümit Seren
This happens if you have an older version of a gwt-x library in your classpath. It actually happened to me because the gwt-bootstrap version I used had a dependency to an old gwt-codeserver-1.5.0.jar version. This dependency was removed in a latter gwt-bootstrap snapshot. Run mvn dependency:

Re: Is "GWT Consulting" a viable career path?

2013-02-16 Thread frankwalker10000
Thanks guysall good points. On Friday, February 15, 2013 8:13:09 AM UTC-8, Glenn wrote: > > I learned GWT back at 1.2 or so to more easily put a web front end on my > server side code. I have fairly wide and deep experience in server-side > and cloud technologies, but it's the GWT on my

Integrating compiled modules GWT at runtime

2013-02-16 Thread vanessa vanessa
Hi team, I have been searching the possibility to integrate some *compiled* *GWT components* in your web application at runtime, but i didn't find my need. Is there any solutions in GWT ? Any help will be deeply apprecited . Thanks Regards -- You received this message because you are subscrib

Re: How to invoke Java String methods from JSNI code

2013-02-16 Thread alucard
Thanks for the tip. I'll go with that. On Saturday, February 16, 2013 12:34:05 AM UTC+1, Thomas Broyer wrote: > > > > On Saturday, February 16, 2013 12:13:04 AM UTC+1, alucard wrote: >> >> On Friday, February 15, 2013 11:15:40 PM UTC+1, Thomas Broyer wrote: >> >>> String is a special beast, as it'