ListEditor and driver.flush

2012-04-24 Thread Vasi , Sándor
Hi Guys, I have a little problem with the Editor framework. I have a big proxy (called myBigProxy ) that i am editing with multiple Editors. Most of the Editors work fine, but there is one ListEditor that does not really work. When i call the driver.flush() on it's parent editor, it returns with

Re: GWT DialogBox

2012-02-17 Thread Vasi Sándor
I am not too sure, but i guess the getContent within the inner class refers to wrong object. You should call MyApplication.this.getContent(). Give a try, i think it ll fix your pb. Sandor On 2012.02.18., at 7:22, Nitheesh Chandran nithe...@dotentreprise.com wrote: Hello , I want to display

Re: How to save a file in server

2012-02-16 Thread Vasi , Sándor
Correct me, if i am mistaken, but i guess, it is not really a GWT question, but a normal HTTPServlet issue and it depends on your container-s settings, isn't it? Sandor On Thu, Feb 16, 2012 at 10:00 AM, yashujn yashssha...@gmail.com wrote: Actually i am not sure how to access the root

Re: Selecting a row in a CellTable but not showing which cell was clicked

2012-02-15 Thread Vasi Sándor
Can u ispect it with firebug, and modify the css property that is on the cell with the value 407, but not on the others on the same row? Sent from my iPhone On 2012.02.16., at 4:42, Kolban kolb...@kolban.com wrote: Folks, Ive built a CellTable and can select rows just fine. However, the

CellTree - which nodes are open or closed on it?

2012-02-14 Thread Vasi , Sándor
I have a cellTree with few nodes. I need to send to the server side which nodes are open on the tree, and which are closed. I was thinking on two solutions, but i have problem with both. 1. Walk the cellTree and double-check all the nodes if they are open or closed. My problem with this is that

Re: The domain type com.dummyPackage.thriftgen.ClassOtherDTO cannot be sent to the client

2012-02-13 Thread Vasi Sándor
I dont know the reason, but if i remember well, i got similar error, when i have changed the server side code and did not launch mvn clean install after. It made the development process really slow, but it forced me to write server side unit tests. Sandor On 2012.02.14., at 2:43, Victor Lujan

Re: Mulitple pages using GWT

2012-02-12 Thread Vasi Sándor
In the gwt world we usually don't navigate the user to new page, but instead replace the content of our container widget. E.g. You have two panels: one for the navigation buttons and an other for the page content. You can replace the content easily in the page content containing panel by