Re: Maven gwt module dependency with an other gwt module dependency

2012-08-30 Thread Saik0
Ok, i should visualize my problem.

First the image of my project structure: 
http://imageshack.us/photo/my-images/253/gwtprojectstructure.jpg/

I'm using gwt 2.4. The main gwt project is a war file build by maven and 
the maven gwt plugin in version 2.4. This project has a dependecy to the 
gwt model(3) which is a gwt module jar with an gwt.xml file. The Root 
project has also a dependency to the gwt view project (2) which is also a 
gwt module jar with an gwt.xml file. The gwt view (2) project needs also a 
dependency to the gwt model project(3). Both jar files has the sources and 
the class files. 

Is there a tutorial or some hints that describes how to setup the projects 
to use multi gwt modules that depends on each other?

kind regards  

Am Dienstag, 28. August 2012 12:12:23 UTC+2 schrieb Saik0:
>
> Hi @all
>
> i'm have an issue with maven and external jars as gwt module jars.
>
> Given is the following project structure:
>
> 1) Root Projekt : gwt-main
>
> 2) Singe GWT View : gwt-viewer-test
>
> 3) Model : gwt-model
>
> The Root Projekt use the gwt-viewer-test and gwt-model project. The 
> gwt-model project is also used by the gwt-viewer-test project. The 
> dependencies are organized with maven. If i build the root project i have 
> still this issue:
>
> [ERROR] : public class de.gwt.viewer.test.ViewerTest
> private [unresolved] de.gwt.model.ModelTest model
>
> This looks like gwt could not obtain the sources of the gwt-model project 
> that is used in gwt-test-viewer and in the root project. if i build the 
> root project without the viewer project gwt finds the sources of the model 
> project.
> What i'm missing?
>
> greetings
> Saik0
>
>

-- 
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/-/waUaayVgBHMJ.
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 gwt module dependency with an other gwt module dependency

2012-08-28 Thread Saik0
Hi @all

i'm have an issue with maven and external jars as gwt module jars.

Given is the following project structure:

1) Root Projekt : gwt-main

2) Singe GWT View : gwt-viewer-test

3) Model : gwt-model

The Root Projekt use the gwt-viewer-test and gwt-model project. The 
gwt-model project is also used by the gwt-viewer-test project. The 
dependencies are organized with maven. If i build the root project i have 
still this issue:

[ERROR] : public class de.gwt.viewer.test.ViewerTest
private [unresolved] de.gwt.model.ModelTest model

This looks like gwt could not obtain the sources of the gwt-model project 
that is used in gwt-test-viewer and in the root project. if i build the 
root project without the viewer project gwt finds the sources of the model 
project.
What i'm missing?

greetings
Saik0

-- 
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/-/WBDB_XD8O3YJ.
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.



Show Iframe of html server that was uploaded to a server first

2012-07-16 Thread Saik0
Hi @all,

i have created a html file within my gwt app and uploaded it to a server. 
As a callback i retriev the server url from this file.

Now i wan't to display this html file into a iframe with the 
com.google.gwt.user.client.ui.Frame Widget. This Widget is a child of the 
DialogBox Widget. If i try to add a external url like google it works but 
not with the url from the server.

What i'm missing?

kind regards
Saik0

-- 
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/-/NomnNvbiUQEJ.
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.



ScrollPanel with a CellList Widget

2012-03-22 Thread Saik0
Hi @all,

i have a confusing issue with the ScrollPanel. Im trying to add a CellList 
with n-Elements to a ScrollPanel. The ScrollPanel itself is add to a 
VerticalPanel. Now i add more Elements to the Celllist and redraw the view. 
Normally i except, that the ScrollPanel shows his Scrollbar if the CellList 
reached a certain Element size but the ScrollBar don't show up and no 
scrolling is visible..

is this possible with a CellList? Is there a good anywhere example?

kind regards

Saik0

-- 
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/-/axk7HtsOowAJ.
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: RPC Serialization of an Interface..

2012-03-14 Thread Saik0
Hi and thanks for your reply. 

i've investigated your suggestions and must say it's more complex as i 
thought. Some Interfaces go'es through the rpc serialization, others not. 
The problem is that i have some enum's in my sources and rpc don't accept 
them. I'm currently redesign my model and let you know if it works. ^^

greetings

Am Dienstag, 13. März 2012 10:09:31 UTC+1 schrieb Alex Dobjanschi:
>
> try to use classes first, but you can definitely use interfaces. there are 
> a couple of considerations: 
> 1 interfaces must extend Serializable
> 2 those interfaces must be found by gwt rpc generator, so place them in 
> one of the source imports of gwt module
> 3 implementations of these interfaces must also be visible to gwt rpc 
> generator - that means, also be included in a visible package - along with 
> the usual serialization requirements

-- 
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/-/OH6neuFKUMEJ.
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: RichTextArea height size

2012-03-14 Thread Saik0
Hi, thanks for your reply.

You are right. I can't change the area itself. I've put the RichTextArea 
into a VerticalPanel and change the width and the height oft this panel. 
Now my RichTextArea looks fine ^^

greetings

Am Mittwoch, 14. März 2012 09:46:19 UTC+1 schrieb dodo dard:
>
> The height of an html textarea is define by number of colonne, not the 
> content of the area it self. 
> So I think you cant not set it with 100%, try with pixel. 
>
> Dodo 
>
>  
> www.html5bydemo.com 
>
> On Mar 13, 1:17 pm, Saik0  wrote: 
> > Hi @all, 
> > 
> > why could i change the width of the RichTextArea with css but not the 
> > height? What i'm missing :-\ ? 
> > 
> > Source: 
> > RichTextArea area = new RichTextArea(); 
> > area.setSize("100%", "100%");

-- 
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/-/uEHsdwKN65MJ.
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.



RichTextArea height size

2012-03-13 Thread Saik0
Hi @all,

why could i change the width of the RichTextArea with css but not the 
height? What i'm missing :-\ ?

Source:
RichTextArea area = new RichTextArea();
area.setSize("100%", "100%");

-- 
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/-/Za8g5AWbuM8J.
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.