Re: GWT Code Splitting: The GWT Stuff and My Core Java Classes

2016-11-23 Thread 'Darko P' via GWT Users

Am Montag, 21. November 2016 23:07:57 UTC+1 schrieb Jens:
>
>
> Can someone clarify?
>>
>
> Each GWT module that has an EntryPoint defined will end up being a GWT 
> application. Each GWT application will contain the code of the GWT SDK that 
> you are using in your app, e.g. a GWT Button, Label, LayoutPanels, etc. So 
> yes if you have 10 small, independent GWT applications (= 10 entry points) 
> and you sum up their final JS size you will end up with a larger total 
> download compared to a single GWT application (= 1 entry point) containing 
> the modules.
>
> So people generally end up using a single GWT application (entry point) 
> and if their app becomes too large they use code splitting so that the app 
> is downloaded in smaller chunks on demand. However some people are also 
> fine with having 10 GWT applications. Server side GZ compression, client 
> side caching and the fact that each of the 10 GWT applications can also use 
> code splitting makes the overhead of duplicated GWT SDK code downloads not 
> that important. With 10 applications you also get benefits like updating 
> them independently from each other.
>
> So again: No you can not have a GWT.js library shared across your GWT 
> modules. You either have to create a single GWT application or multiple GWT 
> applications. A single GWT application will always be smaller than the same 
> application split up into 10 smaller GWT applications because of GWT SDK 
> code duplications. Choose whatever fits best for your use case.
>
>
Thank you for your clarification. Now the picture is much clearer to me!

The module system - with code duplication - is not a option for me since 
even with gzip I will bloat my cellphones traffic volumes beside of the 
evil wait times in bad coverage areas.
Even if I do not understand why such redundancy in modules is implemented 
by the JSInterop team, I understand that the split-points may help me.

There - hopefully my last question:
If I define following split-points:

   - bootstrap
   contains only some NOOP-code (e.g. a dummy trace to console)
   - calculation
   my calculation classes
   - view
   my view classes

Afaik from documentation, this would create the splitting I was asking for. 
Since with the first bootstrap-splitpoint I will also get the GWT-API code 
generated, and the other splitpoints shall only have the generated JS code 
of the wished classes. Or have I some knots in my thoughts?


If my assumption is right. is there a way to control the filenaming of the 
generated split-points? I could not find anything in the docs about it. 

If there is no common way to control the filenaming, where in the JSInterop 
api should I take a look for it, to maybe intercept or modify the process 
of generation?

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: GWT Code Splitting: The GWT Stuff and My Core Java Classes

2016-11-21 Thread 'Darko P' via GWT Users
I have reviewed the docs again. And still I am unsure if I have modularized 
the JSInterop / GWT part properly. Why?

as of the example all generic classes are duplicated in the modules. Means 
if my non-modularized code has a size of about 500kByte I am now getting 
nearly the same size for each module.
Let say I need to make 10 modules. In this case my codebase will explode to 
5MByte of size. I cannot imagine that this is the "modularizing" approach 
of JSInterop. So I still assume I am doing something wrong.

Can someone clarify?


Am Montag, 21. November 2016 19:53:38 UTC+1 schrieb Ignacio Baca 
Moreno-Torres:
>
> This is an exaggerated comment, but... you know that nowadays most of the 
> pages uses various MB on each load, for example just opening apple store 
> downloads 2M, just click ipad goes up to 6M. So... em, hehe codespliting a 
> 1MB uncompressed JS (probably around 300k compressed) which is going to be 
> cached forever is not very good place to dedicate your effort ;). Obviously 
> is just an opinion. But the monolithic approach with the pretty nice unused 
> resources purge algorithm of GWT is even better now than 5 years ago (I 
> remark the 'purger' because you cannot purge if you do not compile the 
> whole app at once). And it even support code splitting if you goes up to 
> various MB of JS.
>
>

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: GWT Code Splitting: The GWT Stuff and My Core Java Classes

2016-11-20 Thread 'Darko P' via GWT Users
I have a very similar issue.

Let say I want to have two modules

   - calculation
   - view
   
Now I would like to have:

   - one big javascript file containing all arbitrary GWT related 
   javascript code.
   let say GWT.js (which will be the biggest file, I assume somehow 
   400-500kByte of size)
   - one calculation.js
   only containing my classes and dependent js transpilations for the 
   calculation (this file shall be probably only a few kByte of size) and of 
   course it depends on GWT.js
   - one view.js
   only containing my classes and dependent js transpilations for theview  
   (this file shall be probably also only a few kByte of size) and of course 
   it depends on GWT.js
   
is such a splitting possible? If so how?

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


"Cannot read property 'isShowing_1_g$' of null" exception thrown when using GWT 2.7

2015-05-08 Thread Petras P.
Hello,

I have this very odd exception thrown when re sizing a window in an 
application which recently was updated to use GWT 2.7 (also other libs were 
updated to support GWT 2.7):
Uncaught com.google.gwt.event.shared.UmbrellaException: 2 exceptions caught: 
(TypeError) : Cannot read property 'isShowing_1_g$' of null; (TypeError) : 
Cannot read property 'isShowing_1_g$' of null
fireEvent_21_g$ @ HandlerManager.java:129
fire_69_g$ @ ResizeEvent.java:44
onResize_30_g$ @ Window.java:871
(anonymous function) @ WindowImpl.java:76
apply_26_g$ @ Impl.java:247
entry0_0_g$ @ Impl.java:306
(anonymous function) @ Impl.java:72

So it looks like ResizeEvent tries to fire event on source element, but 
Window creates handlers by doing "new WindowHandlers()", but that 
constructor has "super(null);" where null is a source. So in the end it 
tries to call method fireEvent(event) on null element. But it says nothing 
about isShowing property. What is it and why can't it be read?

Thanks in advance,
Petras P.

-- 
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 from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: Getting slowness in GWT page in Internet explorer without clearing cache

2015-03-20 Thread Nagarajan P
Friends Any idea on this post ?

On Thursday, 12 March 2015 11:31:29 UTC+5:30, Nagarajan P wrote:
>
> Getting slowness in GWT page in Internet explorer without clearing cache. 
> Please find the below scenarios.
>
>  
>
> 1)  For the first time (Without any cache in browser), when I open my 
> gwt application in Internet explorer (Using IE 8). It was quicker and the 
> page loads and opens quickly.
>
> 2)  Now I closed my browser without clearing cache. When I open my 
> gwt application in Internet explorer (Using IE 8) now, the page loads very 
> slowly and it’s nearly taking more than one minute to load the page. (When 
> checked in fiddler application, the time taken to load nocache.js and 
> cache.html is taking very long time)
>
> 3)  Now when I open my application in same tab of IE 8 (without 
> closing browser), the application is very quick.
>
> 4)  But when I open my application in different tab of IE 8 (without 
> closing browser), the application is very slow same as 2nd scenario.
>
>  
>
> After analysis I come to know that whenever I am not clearing cache, its 
> looking for modified js and html and so the time taken is high. But after 
> clearing cache, both nocache.js and cache.html gets downloaded from server 
> and its quick.
>
> Note: Its occurring only in IE and not in chrome and firefox.
>
> Can someone provide some solution to fix this issue.
>
>
> Thanks,
>
> Nagarajan .P
>

-- 
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 from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Getting slowness in GWT page in Internet explorer without clearing cache

2015-03-11 Thread Nagarajan P


Getting slowness in GWT page in Internet explorer without clearing cache. 
Please find the below scenarios.

 

1)  For the first time (Without any cache in browser), when I open my 
gwt application in Internet explorer (Using IE 8). It was quicker and the 
page loads and opens quickly.

2)  Now I closed my browser without clearing cache. When I open my gwt 
application in Internet explorer (Using IE 8) now, the page loads very 
slowly and it’s nearly taking more than one minute to load the page. (When 
checked in fiddler application, the time taken to load nocache.js and 
cache.html is taking very long time)

3)  Now when I open my application in same tab of IE 8 (without closing 
browser), the application is very quick.

4)  But when I open my application in different tab of IE 8 (without 
closing browser), the application is very slow same as 2nd scenario.

 

After analysis I come to know that whenever I am not clearing cache, its 
looking for modified js and html and so the time taken is high. But after 
clearing cache, both nocache.js and cache.html gets downloaded from server 
and its quick.

Note: Its occurring only in IE and not in chrome and firefox.

Can someone provide some solution to fix this issue.


Thanks,

Nagarajan .P

-- 
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 from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: Radio button in celltable.

2014-11-13 Thread Nagarajan P
Hi ,

My code is looking like this,

  Column checkColumn = new Column(
new CheckboxCell(true, false)) {
  @Override
  public Boolean getValue(ContactInfo object) {
// Get the value from the selection model.
return selectionModel.isSelected(object);
  }
};


here instead of checkbox, i want to use radio button.

I couldnt figure out how to do that :(


Some one please give a solution.

Code snippet will be very useful for me.


Thanks in advance.


Regards,

P.Nagarajan


On Thursday, 13 November 2014 13:48:50 UTC+5:30, Nagarajan P wrote:
>
> Hi All,
>  
> I am new to GWT. I am using a checkbox cell with single selection model in 
> celltable.
> But i want to use radio button with single selection model in celltable.
> Please do the needful.
>  
> Answers with code snippet would be very helpful.
>  
> Thanks in advance.
>  
> Regards,
> P.Nagarajan
>  
>

-- 
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 from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Radio button in celltable.

2014-11-13 Thread Nagarajan P
Hi All,
 
I am new to GWT. I am using a checkbox cell with single selection model in 
celltable.
But i want to use radio button with single selection model in celltable.
Please do the needful.
 
Answers with code snippet would be very helpful.
 
Thanks in advance.
 
Regards,
P.Nagarajan
 

-- 
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 from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Textbox width according to the characters present in the textbox.

2013-12-16 Thread P
Hi,

I need to set the size of the text box according to the length of the text 
inside that box, it may contain localized characters like Chinese. Is any 
we can calculate the length in pixels for this?

Thank you,
Parag   

-- 
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 from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/groups/opt_out.


Re: How to resolve Policy file permission problem.

2013-04-19 Thread Sireesha P
hello...No one replied solution to this problem? what happens to DEV team?

On Wednesday, April 17, 2013 6:07:57 PM UTC+5:30, Sireesha P wrote:
>
> Hi, 
>
> i am new to GWT. i gone through several suggestion of GWT users 
> to develop my project. It is deploying fine for some times , but suddenly 
> showing this error even i didn't change any of my code.
>
> some times i deleted policy file in "temp" file again tried to run my 
> project. but again the file is creating in "temp' folder.
> 1. is it possible to stop producing"test.policy" file when project is 
> running?
> 2. Is there any way to change permission in policy file towards my project 
> files ?
>
> i checked all my JAVA & HTML code. it is perfect seems to be. it worked 
> also for first 3 times. but not after that. i restarted system & browsers & 
> eclipse as well
> please resolve this.
>
>
> --
>
> Initializing App Engine server
> Unable to start embedded HTTP server
> [ERROR] shell failed in doStartupServer method
> java.security.AccessControlException: access denied 
> ("java.io.FilePermission" 
> "C:\Users\TESTEG~1\AppData\Local\Temp\test7750362367300466898.policy" 
> "delete")
> at java.security.AccessControlContext.checkPermission(Unknown Source)
> at java.security.AccessController.checkPermission(Unknown Source)
> at java.lang.SecurityManager.checkPermission(Unknown Source)
> at java.lang.SecurityManager.checkDelete(Unknown Source)
> at java.io.File.delete(Unknown Source)
> at 
> com.google.apphosting.utils.security.SecurityManagerInstaller.install(SecurityManagerInstaller.java:83)
> at 
> com.google.appengine.tools.development.DevAppServerFactory.createDevAppServer(DevAppServerFactory.java:152)
> at 
> com.google.appengine.tools.development.DevAppServerFactory.createDevAppServer(DevAppServerFactory.java:69)
> at 
> com.google.appengine.tools.development.DevAppServerFactory.createDevAppServer(DevAppServerFactory.java:53)
> at 
> com.google.appengine.tools.development.gwt.AppEngineLauncher.start(AppEngineLauncher.java:84)
> at com.google.gwt.dev.DevMode.doStartUpServer(DevMode.java:509)
> at com.google.gwt.dev.DevModeBase.startUp(DevModeBase.java:1093)
> at com.google.gwt.dev.DevModeBase.run(DevModeBase.java:836)
> 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 unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




How to resolve Policy file permission problem.

2013-04-17 Thread Sireesha P
Hi, 

i am new to GWT. i gone through several suggestion of GWT users 
to develop my project. It is deploying fine for some times , but suddenly 
showing this error even i didn't change any of my code.

some times i deleted policy file in "temp" file again tried to run my 
project. but again the file is creating in "temp' folder.
1. is it possible to stop producing"test.policy" file when project is 
running?
2. Is there any way to change permission in policy file towards my project 
files ?

i checked all my JAVA & HTML code. it is perfect seems to be. it worked 
also for first 3 times. but not after that. i restarted system & browsers & 
eclipse as well
please resolve this.

--

Initializing App Engine server
Unable to start embedded HTTP server
[ERROR] shell failed in doStartupServer method
java.security.AccessControlException: access denied 
("java.io.FilePermission" 
"C:\Users\TESTEG~1\AppData\Local\Temp\test7750362367300466898.policy" 
"delete")
at java.security.AccessControlContext.checkPermission(Unknown Source)
at java.security.AccessController.checkPermission(Unknown Source)
at java.lang.SecurityManager.checkPermission(Unknown Source)
at java.lang.SecurityManager.checkDelete(Unknown Source)
at java.io.File.delete(Unknown Source)
at 
com.google.apphosting.utils.security.SecurityManagerInstaller.install(SecurityManagerInstaller.java:83)
at 
com.google.appengine.tools.development.DevAppServerFactory.createDevAppServer(DevAppServerFactory.java:152)
at 
com.google.appengine.tools.development.DevAppServerFactory.createDevAppServer(DevAppServerFactory.java:69)
at 
com.google.appengine.tools.development.DevAppServerFactory.createDevAppServer(DevAppServerFactory.java:53)
at 
com.google.appengine.tools.development.gwt.AppEngineLauncher.start(AppEngineLauncher.java:84)
at com.google.gwt.dev.DevMode.doStartUpServer(DevMode.java:509)
at com.google.gwt.dev.DevModeBase.startUp(DevModeBase.java:1093)
at com.google.gwt.dev.DevModeBase.run(DevModeBase.java:836)
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 unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




How to use Gin DI in custom ConstraintValidator (Bean Validation)?

2013-03-29 Thread p . kotlyarov1988
For example i have some CodeValidator with dependencies.

public class ExistingCustomsCodeValidator implements 
ConstraintValidator {
@Inject private CustomsCodeService customsCodeService;
@Inject private ProcessingCtx processingCtx;

@Override public void initialize(ExistingCustomsCode 
constraintAnnotation) {}

@Override public boolean isValid(String value, 
ConstraintValidatorContext context) {
return customsCodeService.isValid(value, 
processingCtx.getDeclarationDateTime());
}
}

I can simply inject dependencies on server-side, but i can't imagine how to 
do this on client-side.

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




Bean Validation customization questions

2013-03-29 Thread p . kotlyarov1988
First of all i need to make MessageInterpolator decorator like that.

public class MessageInterpolatorDecorator implements MessageInterpolator {
private final MessageInterpolator decorator;

public MessageInterpolatorDecorator(MessageInterpolator decorator) {
this.decorator = decorator;
}

@Override public String interpolate(String messageTemplate, Context 
context) {
return decorator.interpolate(messageTemplate, context);
}

@Override public String interpolate(String messageTemplate, Context 
context, Locale locale) {
return decorator.interpolate(messageTemplate, context, locale);
}
}

It looks like correct, but can't be compiled.

The second requirement in my project is usage DI in custom 
ConstraintValidator. For example:

public class ExistingCustomsCodeValidator implements 
ConstraintValidator {
@Inject private CustomsCodeService customsCodeService;
@Inject private ProcessingCtx processingCtx;

@Override public void initialize(ExistingCustomsCode 
constraintAnnotation) {}

@Override public boolean isValid(String value, 
ConstraintValidatorContext context) {
return customsCodeService.isValid(value, 
processingCtx.getDeclarationDateTime());
}
}

It can be simply done at server side, but i haven't any idea how to do this 
on client side. Can somebody give me advice?

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




External Server communication with HTTP requests

2012-10-29 Thread John P
Hello,

I need support for the communication with external services like Google 
Maps API.
The following code and websites includes my concerns.

At first I want to get a google map with a HTTP request.
The following website shows the information for my intention.
https://developers.google.com/maps/documentation/staticmaps/?hl=en

How can I get Google Maps over HTTP requests?

Another point is the geocoding API from google. 
https://developers.google.com/maps/documentation/geocoding/
I want to get information with the geoCodeStr.
I tried this string with my browser and get information which you can see 
under the HTTP request code.
The problem of my project is that I get no response.
The status code is 0.

I hope someone can give me some advice?

Thanks.

String geoCodeStr= 
URL.encode("http://maps.googleapis.com/maps/api/geocode/json?address=1600+Amphitheatre+Parkway,+Mountain+View,+CA&sensor=false";);
requestBuilder = new RequestBuilder(RequestBuilder.GET, geoCodeStr);
 try {
 requestBuilder.sendRequest(null,
new RequestCallback() {
public void onError(Request request, Throwable exception) {
Window.alert("Request timeout or no connection to server: "
+ exception.getMessage());
}

public void onResponseReceived(Request request,
Response response) {
System.out.println(response.getHeadersAsString());
System.out.println(response.getText());
if (200 == response.getStatusCode()) {
System.out.println(response.getText());
} else {
Window.alert(""+response.getStatusText());
}
 System.out.println(Integer.toString(response.getStatusCode()));
 }
});
} catch (RequestException e) {
Window.alert("No connection with server: "+e.getMessage());
}
}

{
   "results" : [
  {
 "address_components" : [
{
   "long_name" : "1600",
   "short_name" : "1600",
   "types" : [ "street_number" ]
},
{
   "long_name" : "Amphitheatre Pkwy",
   "short_name" : "Amphitheatre Pkwy",
   "types" : [ "route" ]
},

...

-- 
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/-/X_vIMWxc78sJ.
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 and Visual Paradigm ORM Probleme

2012-10-09 Thread Maxime P. CIMS


-- 
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/-/QsB7aDlQ4GoJ.
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 Smart GWT in GWT MVP framework with maven

2012-09-25 Thread karthikeyan p
Hi,

Currently there is a requirement in our project for drag and drop feature 
in the tree format. So we are planning to use smart GWT.
But when i include smart gwt dependencies in the pom.xml and start the 
project in jetty using mvn run.
The application is throwing error in GWT GIN injector,but i have not used 
any smart gwt wigedt in our project just i have added the dependencies in 
the pom.xml
i don't know why it is getting failed. if i remove the dependencies the 
application is loading properly.
Can anyone advise me that where iam missing something or any other example 
to use the smart gwt with the mvp + maven .

Thanks,
Karthik

-- 
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/-/3M1dQg8MncoJ.
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 Developer Plugin for firefox 11 (Windows XP)

2012-09-12 Thread G P
Hi everybody!
Could you tell me, please, where can i download GWT Developer Plugin for 
firefox 11 (Windows XP)? Links like that 
http://acleung.com/gwt-dev-plugin-ff11.xpi are not available anymore...

-- 
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/-/LYBpJTXqxFcJ.
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 Visual Paradigm ORM Probleme

2012-09-07 Thread Maxime P. CIMS
Hi,

Am making management application for research center and I have a probème 
with using visual-paradigm orm file:
1. ORM + Java = work
2. ORM + java + RPC = not working

I have always an error like.

00:02:31,153  [ERROR] Line 80: No source code is available for type 
org.orm.PersistentSession; did you forget to inherit a required module?

You can see de compiled jar in attached file orm.jar and the source in 
orm.src_9_020120418.zip

when i'm try to merge the both in orm.jar  all SRC  all src and .cass are 
there and I try to add .gwt.xml file and load it  but 

that not work. That work with jboss but i wanna make it with gwt

SEE:

http://www.google.ca/url?sa=t&rct=j&q=&esrc=s&source=web&cd=2&ved=0CDgQFjAB&url=http%3A%2F%2Fmedia.visual-paradigm.com%2Fmedia%2Fdocuments%2Fdbva40jpg%2Fpdf%2Fdbva_java_programmer_guide_chapter3.pdf&ei=zrNIUKWfOKHy0gG_44D4CA&usg=AFQjCNEpTKe4L3Gcncdh3nBfgNPVQvkj_A&sig2=nCe7-sKNGr48elhdVi1XHA

I hope some one can help me !

Thank.

-- 
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/-/JHsaJDggKI8J.
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: Plug-ins GWT - Eclipse

2012-08-24 Thread Julio P. Leiser
donwload already installed the file.

But by using the url eclipse is not working.*

NoSuchKeyThe specified key does not
exist.


*
Atenciosamente, Julio P. Leiser
---
*House Company Informática Ltda*
Arquiteto de Software
Celular   : (55) (11) 9390-3404
Fone  : (55) (11) 5584-0835
E-Mail: jplei...@hcinf.com
Site  : www.hcinf.com
Endereço  : Alameda dos Guatás 873 , Casa
CEP:04053-042 - Planalto Paulista
São Paulo, SP.



2012/8/24 Juan Pablo Gardella 

> You must install inside eclipse, you can't download with a browser.
>
> 2012/8/24 Julio P. Leiser 
>
>> Hi, does anyone know why the site gwt plug-ins is not in the air.
>>
>> Two days ago I'm trying to install the plugin for google JUNO (
>> http://dl.google.com/eclipse/plugin/4.2) and the service can not
>> download.
>>
>> Can anyone help me.
>>
>> Atenciosamente, Julio P. Leiser
>> ---
>> *House Company Informática Ltda*
>> Arquiteto de Software
>> Celular   : (55) (11) 9390-3404
>> Fone  : (55) (11) 5584-0835
>> E-Mail: jplei...@hcinf.com
>> Site  : www.hcinf.com
>> Endereço  : Alameda dos Guatás 873 , Casa
>> CEP:04053-042 - Planalto Paulista
>> São Paulo, SP.
>>
>>  --
>> 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 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.



Plug-ins GWT - Eclipse

2012-08-24 Thread Julio P. Leiser
Hi, does anyone know why the site gwt plug-ins is not in the air.

Two days ago I'm trying to install the plugin for google JUNO (
http://dl.google.com/eclipse/plugin/4.2) and the service can not download.

Can anyone help me.

Atenciosamente, Julio P. Leiser
---
*House Company Informática Ltda*
Arquiteto de Software
Celular   : (55) (11) 9390-3404
Fone  : (55) (11) 5584-0835
E-Mail: jplei...@hcinf.com
Site  : www.hcinf.com
Endereço  : Alameda dos Guatás 873 , Casa
CEP:04053-042 - Planalto Paulista
São Paulo, SP.

-- 
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 - dev environment ...

2012-07-16 Thread g p
I have been using Ubuntu x64 and GWT/Eclipse for three years at as my work
dev environment.
Have upgraded both Ubuntu, Eclipse, all this time, to the latest versions.
Never used the WindowBuilder (was not even free when I started this
project, so had to stay away from it).

As previous messages said, the trick is the memory. At 2GB it was a pain to
even open the PC.
Upgraded to 4GB and now sit at an 8GB machine that gives me enough power to
even run my app on Dev Mod.

At home I set up a Linux VM under VMWare with 3GB for testing purposes. I
am able to do almost as much as with my work PC, but I had to make sure 2
CPUs are registered for that VM. 64bit OS as well and latest Eclipse ...
following the releases of the newest stuff (galileo->helios->indigo->juno).

IMO windows are to be avoided for such type of development environments.
Use a VM of them, if you need to test for IE clients (if you can avoid
those as well you will be more mentally healthy at the end :D)

Cheers,

On Friday, July 13, 2012 11:19:20 AM UTC+2, Nick Floros wrote:
>
>> Hi,
>>
>>  I have been evaluating GWT as a development framework in building a call
>> handling application; maybe this is nuts idea but this is another story.
>>
>>  It has been going kind of ok up to the point where my eclipse started
>> running out of memory ; host os is Windows XP 32 bit. In addition corporate
>> PC are full of anti-virus software which makes compilation and opening
>> WindowsBuilder design a bit of a pain.
>>
>>  So have been considering using 64 bit LINUX; in an attempt to avoid all
>> the av software.
>>
>>  Does anybody out there has any recommendations about which version of
>> LINUX 64 bit and eclipse go together with GWT and WindowBuilder ?
>>
>>  Been trying (admittedly on a VM)
>> - Ubuntu 12.04 (32bit + 64bit) + eclipse 3.7 no joy tried also eclipse
>> 4.2
>> - Mint Linux Cinnamon I get only a working environment but only with
>> eclipse 3.6
>> - OpenSuse + eclipse 3.7 works when using standard GWT widgets. Any
>> attempt to use GWT-EXT results in eclipse death.
>>
>> Any suggestions will be appreciated.
>>
>> Thanks
>>
>> Nick
>>
>>
>  --
> 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/-/UROBoRqe1GMJ.
>
> 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.



abt the changin the size of panel

2012-05-02 Thread p fairoose
sir.i am using gxt frame work im that i want change the size of
boxes...and when i select a box then automatically other box will load
is there is any such listner pls give me idea abt the same

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



RequestFactory check if client got most recent proxy

2012-04-27 Thread Kiril P
Hi,

I my requestfactory implementation I have use case where entities can be 
updated by multiple clients.

Is there a way for client to check that it has got latest version of entity 
proxy before trying to save changes?


-- 
Best regards,
Kiril Piskunov

-- 
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/-/t-D1SL93Kp4J.
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: No source code is available for type com.google.code.p.gwtchismes.client.GWTCDatePicker

2012-04-04 Thread g p
Have you read and followed the steps described at
http://code.google.com/p/gwtchismes/wiki/GwtChismes_QuickStart ?

On 4 April 2012 11:31, Mithun  wrote:

> Hi,
>
> At the time of building our project, we are getting following error:
>
>   [ERROR] Line 51: No source code is available for type
> com.google.code.p.gwtchismes.client.GWTCDatePicker; did you forget to
> inherit a required module?
>
> It would be very helpful if someone can give me some solutions.
>
> Regards,
> Mithun
>
> --
> 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/-/eQcYR2QtMgEJ.
> 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.



Look at GWT Connectors

2011-12-07 Thread PEOPLES, MICHAEL P
Rihab,

I'm too new to GWT to offer you any advice.  However, you should check the 
GWT-Connectors code at the following URL.  It's a very good implementation.  
You might wish to provide more details as to what happened with your current 
code.

http://code.google.com/p/gwt-connectors/

Michael Peoples (mp4783)
Senior Systems Manager
AT&T - ATTSI
Office/Cell:  614-886-0923
mpeop...@att.com<mailto:mpeop...@att.com>

This e-mail and any files transmitted with it are AT&T property, are 
confidential, and are intended solely for the use of the individual or entity 
to whom this email is addressed. If you are not one of the named recipient(s) 
or otherwise have reason to believe that you have received this message in 
error, please notify the sender and delete this message immediately from your 
computer. Any other use, retention, dissemination, forwarding, printing, or 
copying of this e-mail is strictly prohibited."



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



cant open gwt web project

2011-05-26 Thread alok o p
hi
i am getting this error message,while i try to open a new gwt web 
project,please let me know if anyone has solution.

Plug-in com.google.gdt.eclipse.suite was unable to load class 
com.google.gdt.eclipse.suite.wizards.NewWebAppProjectWizard.
An error occurred while automatically activating bundle 
com.google.gdt.eclipse.suite (947).

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.



Re: RequestFactory : Persisting List of Child EntityProxies : setting Child Properties to null.

2011-05-24 Thread Etienne P.
I ran across this issue recently when trying to update existing data.
I am using the JDO API on GAE.  I was able to get around this issue.
I do believe making sure you share the PersistenceManager across for a
single request was part of the solution. Also I've made changes to my
Locator and forced it to retrieve the collection by using using a
FetchGroup. I'm using Google Guice to do dependency injection and that
made things a bit easier implement.

Based on that, I don't think the documentation is misleading. It's
just a bit vague as to how this all works behind the scenes and how
you need to wire everything within the scope of a single request.

-- 
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: RequestFactory : Persisting List of Child EntityProxies : setting Child Properties to null.

2011-04-05 Thread Etienne P.
I've figured it out after reading the dang manual carefully this time :-/. I 
had forgotten to call the .with() method on the request. All's well. GWT and 
I are friends again.

-- 
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: RequestFactory : Persisting List of Child EntityProxies : setting Child Properties to null.

2011-04-05 Thread Etienne P.
I'm having the inverse problem, whereas I can save the list of
children just fine, but when I retrieve them, the list shows up empty
on the client side. I have proven that the children get retrieved just
fine from the DB but they get lost in the process of "proxyfying" the
response. Has anybody run into the same problem?  I can retrieve Lists
of Integers and simple types, but Lists of pojo's don't get returned
correctly.

On Apr 4, 11:35 am, Thomas Broyer  wrote:
> Most likely the properties for the children will be set *after* the children
> have been given to their parent; something like:
>
>    1. create parent
>    2. create child A
>    3. create child B
>    4. set parent properties (including "empty" children objects A and B)
>    5. set child A properties
>    6. set child B properties
>
> What matters is what your service method receives as argument. But yes, it
> means your setChildren() in the parent object cannot make a copy of the
> children objects (it can make a shallow copy of the list though) or rely on
> any of their properties.

-- 
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 1.7.1 - run problem

2011-03-23 Thread Łukasz P .
Hi,
I've got a problem when running my project with gwt 1.7.1 and this
message appears:

Unknown argument: -codeServerPort
Google Web Toolkit 1.7.1
HostedMode [-noserver] [-port port-number | "auto"] [-whitelist
whitelist-string] [-blacklist blacklist-string] [-logLevel level] [-
gen dir] [-style style] [-ea] [-server servletContainerLauncher] [-
startupUrl url] [-war dir] [-extra dir] [-workDir dir] [-localWorkers
count] module[s]

Using gwt 2.2 it works fine but with any older versions 1.4 - 1.7:

Unknown argument: -codeServerPort

or

Unknown argument: -remoteUI

message appears.

I would use gwt sdk 2.2 which works fine but when I compile project
I've got error:

Unresolvable native reference to method 'instance' in type
'com.gwtext.client.widgets.tree.TreeNode'

and I heard that in older version this error doesn't show up, and it's
correct, compilation succeeded.

Can anyone tell me what's wrong?

-- 
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: Overlays and Hosted mode

2011-02-09 Thread P Osborne
hosted mode isn't for performance it is for debugging.  Personally I've
found that starting production Jetty is faster than starting hosted mode and
waiting for the application to load.

On Wed, Feb 9, 2011 at 3:53 PM, Thomas Broyer  wrote:

> Each time you go from Java to JS, and from JS to Java, the DevMode
> communicates with the plugin in your browser, which then communicates with
> the web page to execute the JS (and in Chrome, that last part is even slower
> than in other browsers due to chrome's architecture).
>
> --
> 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 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: Deploying Application (GWT 2.1.0) on Tomcat

2011-02-09 Thread P Osborne
The gwt-dev jar is there to support hosted mode, it shouldn't be delivered
in the application war file.  I believe that jar is operating system
specific.

-- Patrick

On Wed, Feb 9, 2011 at 4:42 PM, Y2i  wrote:

> May be you can get the commons logging jar?
> http://commons.apache.org/logging/guide.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 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.



Dynamic module loading (not deferred binding)

2010-11-12 Thread Johan P.
Hi.

I'm working on a hack of the GWT compiler enabling to dynamically load
Module compiled separately.
I don't speak of deferred binding capacities which need to compile all
code in the same process.

What I have in mind is to dynamically load modules written by other
developers compiled at different time.
This module will be include by simply load the generated javascript.

Schematically it's will work like this :
- When compiling the main code, the compiler will export a file which
trace the binding between full item name and obfuscated item name.
(this part is already existing)
- When compiling the dynamic module code, the compiler will use the
previous table to assign the same names.
(this part is to do)

The main start point in GWT compiler code it's this method :
com.google.gwt.dev.jjs.JavaToJavaScriptCompiler::compilePermutation

If someone have some advices ...
Does some of you know this part of the code ? ... in case of technical
questions.

Johan

-- 
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-tool...@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.



Compatibility for GWT and GWT EXT

2010-09-29 Thread Renisha P
Hi ,

I need to use Editable grid provided by GWT- Ext .
The issue here is that the editable grid is to be displayed on click
of a tab and the tab is of type import
com.google.gwt.user.client.ui.TabPanel;

Can someone please tell me which version of GWT - EXt should I use ?
I am using GWT 2.0.3 version.


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-tool...@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: Need help on generating session id

2010-08-09 Thread Mani P
Thank you all guys for your responses.

But when i try to do the same thing in Java using servlets i am getting
different sesssion id's if i open a new same browser. But where as in using
GWT i am getting same session even if i use different browser (same
browser). So my requirement is to generate different session id when ever
there is a different browser instance like how i am getting in java.

On Mon, Aug 2, 2010 at 1:49 AM, eluminous chaitu  wrote:

> Hello Mani,
>
> when Firefox generates a session id for one process, it is shared within
> all the instances of Firefox, as all the instances of Firefox is a single
> process and not different instances.
> All the instances of Firefox share a common process area which causes to
> retain a session id for all instances within that process area. This is same
> for IE too.
>
> Thanks & Regards
> eluminous Chaitu
>
>
>
>
>
> On Sat, Jul 31, 2010 at 5:22 AM, Mani  wrote:
>
>> Hi, when i try to get session id by using following piece of code
>> every time i am getting same session id if i try from same browser
>> (with two instance browsers) like Firefox or IE.
>>
>> getThreadLocalRequest().getSession().getId()
>>
>> Can any one tell me why it is giving same session id.
>>
>> Thanks
>> Mani
>>
>> --
>> 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-tool...@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.
>>
>>
>
>
> --
> Website for 
> Mobiles| Organic
> SEO 
>
>
> --
> 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-tool...@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-tool...@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.



Need help on Richtext editor formatting.

2010-08-04 Thread Rajeshwari P.
Hi,

GWT(version  2.0.3) Richtext editor has been used , from where users
enter data and they format it through the formatting toolbar in
Richtext editor.PDF reports are generated (Using Jasper report)
once user enters data in RT editor.

The problem is , few of the formattings (like : Bold,
Italics,Justification, Indentation,HR,create link, remove link) used
are reflecting only in rich text editor , but the same  formatting is
not shown in PDF reports.Only underline is reflecting in PDF report.

I have tried below things, still problem exists.:
1) I have explicitly provided true type fonts (along with Bold and
Italics) as font extensions to Jasper.
2) I have observed that Bold and Italics are saved as  and
 respectively.
  If I change  and  to  and  from database , then
Bold, Italics formatting reflects in PDF reports.


So, would like to know :

1) Is rich text editor formatting compatible with Jasper report
(version 3.7.3)?
2) Where exactly the entered text getting converted to HTML?
3) Is there any file where the meanings of formattings mentioned?
means , where exactly Bold to be considered as  is mentioed?
4) Please suggest how this issue can be fixed.


Thanks&Regards,
Rajeshwari

-- 
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-tool...@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.



Best way to chain callbacks?

2010-07-20 Thread g p
OK I am sure all of you have come up against this beast at some time during
your development process.
In order to get results from a backend server you have to make a series of
calls to fetch data. And to make it worse the subsequent calls are
based on data collected at the previous steps of this calls sequence.  So
chaining these calls is what one has to do to achieve his goal.

>From my understanding the command pattern has been proposed to mitigate this
problem. I have seen some libraries (gwt-dispatch namely) that
implement this pattern, but, unless I am mistaken, they are only doing so
for the GWT-RPC mechanism. For the case of using the RequestBuilter and
HTTP however I couldn't find out a good chaining example that uses the
command pattern.

So far I have had some good results using  the Chain of Responsibility
pattern. However the solution - at least as I implemented it - is not as
well formated as I
would have hoped for. The problem is that I need to be aware of the paths my
chain takes. For example lets assume that at a step of the chain I need to
branch towards more
leaves rather than having only one leaf. My solution has been to keep track,
by a counter, the number of paths my chain follows and at the end collect
them to
a single point and when all have been collected to send the results for
processing to the other elements of the UI. I feel though that I am doing
too many stuff the "wrong way"
and there is a better way to organise my code to achieve the above
functionality.

So my question is, do you know a better way to chain the numerous callbacks
that are needed to process a series of asynch HTTP calls? Is there
a library that implements the command pattern for HTTP calls as well - not
only the GWT-RPC mechanism? Any good examples I could look into?

Thx in advance for your 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-tool...@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 and telnet connections

2010-07-06 Thread Łukasz P .
I have another question, as I said I want to send responses from the
server to the client but is it secure using GWT-RPC?

-- 
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-tool...@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: Can i get url parameters values in my gwt java code?

2010-06-09 Thread g p
Window.Location.getParameter("debug")

On 9 June 2010 15:27, nacho  wrote:

> Hi, i want to put a parameter in the url and get it value from my gwt
> java code.
>
> For example, if i go in the browser to
> http://localhost:8080/MyApplication/Hostedpage.html?debug=true
>
> I want then in my java code do something with that value:
>
> String debugParameterValue = ?;
>
> Window.alert(debugParameterValue);
>
> Can i do that? How?
>
> --
> 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-tool...@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-tool...@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 can I prevent from reloading the page when the reload button on browser is clicked?

2010-06-01 Thread g p
You could look into the Html5' s local storage mechanism for saving your
application's state before a reload happens.
You can also decide what part of the state you want to save, thus reloading
gracefully the most important parts of your application and letting the user
do the needed actions to reach at her previous state (i.e in a tree you
could just load the tree at its initial state and have the user manually
open the nodes to her previous selection ... )

As you mentioned your approach is a lazy one, and in ajax refresh is less
and less used, but the application should not try to teach users new ways
to interact with the browser and if possible handle the history events in a
non catastrophic way ...

Cheers!

-- 
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-tool...@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 and telnet connections

2010-05-17 Thread Łukasz P .
I'm reading something about GWT-RPC now, and I wonder is it possible
to make all the telnet connections on the server side and send the
responses via GWT-RPC to the client side?

-- 
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-tool...@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: SmartGWT 2.1 doesn't work

2010-05-13 Thread g p
Remove everything related to smartGWT and test that your GWT code works for
start.
Make sure that you are compiling for the right browser etc.
Then add a small smartGWT feature like a Label and test to see if you can
make it appear in your application.
That should have prepared the road for you to move to more complex
examples/functionality.

Cheers,
g.

-- 
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-tool...@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 telnet connections

2010-05-12 Thread Łukasz P .
Hello,
I wonder is it possible to make an application in GWT that could use
telnet connections?
Simply I need to send some commands via telnet to a server and show
the responses in a window.
I know it is possible in Java, but is it possible in 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-tool...@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 ...geting 2 elements in one row and how to link to several html files instead on of only one

2010-04-21 Thread Sidharsh P
Hello,

I am new to GWT I am trying  to create a simple login page  which is
linked to a login.html and login.css file
I have a vertical panel and have created a Label for Username and a
textfield for entering the userid. However when I say vPanel.add() to
both of them...they go to different rows. How does one get them in one
row. Will I have to use another container for each row.(Plese note
that there could be several more rows like this ...name, first name,
last name etc) What type of container do you suggest for each row
should it be a horizontal Panel or something else?

Also after hitting the submit button I would like the application to
go to be linked to another html page e.g. index.html instead of the
original login.html. How do I do that?

Would appreciate some answers from knowledgeable folks on this.

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-tool...@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 see my posts

2010-04-21 Thread Sidharsh P
Hi Thomas,
Thanks to your information. I am now able to see recent activity against my
login.
It seems that I will have to re-post my issue.

Regards

On Tue, Apr 20, 2010 at 8:06 AM, Sidharsh P  wrote:

> Hello Thomas,
> Here is the post I had posted a few days back.
> Regards
>
>
> Title:GWT ...geting 2 elements in one row and how to
>
>   link to several html files instead on of only one
>
> Hello,
>
> I am new to GWT I am trying  to create a simple login page  which is
> linked to a login.html and login.css file
> I have a vertical panel and have created a Label for Username and a
> textfield for entering the userid. However when I say vPanel.add() to
> both of them...they go to different rows. How does one get them in one
> row. Will I have to use another container for each row.(Plese note
> that there could be several more rows like this ...name, first name,
> last name etc) What type of container do you suggest for each row
> should it be a horizontal Panel or something else?
> (I think the grid widget may do the job...but I dont really like keeping a
> count of which widget is in which grid)
>
> Also after hitting the submit button I would like the application to
> go to be linked to another html page e.g. index.html instead of the
> original login.html. How do I do that?
>
> Would appreciate some answers from knowledgeable folks on this.
>
> Regards,
>
>
>
> On Sat, Apr 17, 2010 at 3:11 PM, Thomas Broyer  wrote:
>
>>
>> On Apr 17, 5:41 am, Sid  wrote:
>> > Hello,
>> > I have made a post "GWT ...geting 2 elements in one row and how to
>> > link to several html files instead on of only one" a few days back. I
>> > do not know the status of this...neither do I know how to go to this
>> > post.
>>
>> I don't remember having seen it.
>>
>> > Once logged in is there some link which says "go to my posts" or
>> > something like that.
>>
>> If you go to your "Profile" (link on the top right corner) you'll see
>> your "Recent Activity".
>>
>
>
>
> --
>

-- 
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-tool...@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 see my posts

2010-04-19 Thread Sidharsh P
Hello Thomas,
Here is the post I had posted a few days back.
Regards


Title:GWT ...geting 2 elements in one row and how to
  link to several html files instead on of only one

Hello,

I am new to GWT I am trying  to create a simple login page  which is
linked to a login.html and login.css file
I have a vertical panel and have created a Label for Username and a
textfield for entering the userid. However when I say vPanel.add() to
both of them...they go to different rows. How does one get them in one
row. Will I have to use another container for each row.(Plese note
that there could be several more rows like this ...name, first name,
last name etc) What type of container do you suggest for each row
should it be a horizontal Panel or something else?
(I think the grid widget may do the job...but I dont really like keeping a
count of which widget is in which grid)

Also after hitting the submit button I would like the application to
go to be linked to another html page e.g. index.html instead of the
original login.html. How do I do that?

Would appreciate some answers from knowledgeable folks on this.

Regards,


On Sat, Apr 17, 2010 at 3:11 PM, Thomas Broyer  wrote:

>
> On Apr 17, 5:41 am, Sid  wrote:
> > Hello,
> > I have made a post "GWT ...geting 2 elements in one row and how to
> > link to several html files instead on of only one" a few days back. I
> > do not know the status of this...neither do I know how to go to this
> > post.
>
> I don't remember having seen it.
>
> > Once logged in is there some link which says "go to my posts" or
> > something like that.
>
> If you go to your "Profile" (link on the top right corner) you'll see
> your "Recent Activity".
>



-- 
Regards,

Roland

-- 
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-tool...@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: GWTFeedReader broken ?

2010-04-09 Thread g p
Hmm ... from its how to build:
"

   1. Check out the Google Web Toolkit as described in Making GWT
Better<http://code.google.com/webtoolkit/makinggwtbetter.html>
  - Checking out the GWT 1.4 release branch is recommended instead of
  trunk"


Maybe this is why you get the errors?
It looks to me this is an old and not updated to latest GWT code ...

Cheers!

On 9 April 2010 09:21, Henchan  wrote:

> I downloaded GWTFeedReader from
> http://gwt-feed-reader.googlecode.com/svn/trunk
> into Eclipse (via SVN) for the first time. The GWT 2.0.3 SDK is
> installed and other projects are compiling fine.
> Eclipse highlights  a small number of errors in the GWTFeedReader
> source.
> The first: "StyleInjector cannot be resolved". There was no class
> called StyleInjector in the svn repository. Though I could find the
> source through the web interface
>
> http://code.google.com/p/gwt-feed-reader/source/browse/trunk/src/com/google/gwt/sample/feedreader/client/StyleInjector.java?r=36
>
> Installing just this class did not resolve the problems, however.
> Suspecting that the svn package's integrity is compromised, I am
> reluctant pursue these errors piecemeal.
> Or maybe I am just doing something wrong ?
>
> - henchan
>
> --
> 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-tool...@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-tool...@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 retrieving texts from .properties file dynamically?

2010-04-03 Thread g p
Better use one attribute and include your texts delimited with a special
character (i.e. #). One that you do not expect to have into your texts. Then
pull that attribute with the normal way and break the string with a split
and use that table to create your desired format for your output to your
user.

On 3 April 2010 10:18, Victor Papp  wrote:

> Hi
>
> I am using i18n to retrieve texts.
> Normally, i do it this way:
>
> AppMessages res=(AppMessages)GWT.create(AppMessages.class);
> litIntro.setInnerHTML(res.intro().toString());
>
> Now, I have a set of texts in AppMessages.properties file, like this:
>
> intro=some intro text
> text01=x
> text02=y
> 
> text99=z
>
> I want to use a loop to retrieve the texts and build a grid:
>
> for (i=0;i<100; i++) {  /* code for building grid*/ }
>
> How can i retrieve these texts from the AppMessages class?
>
> --
> 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-tool...@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-tool...@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 and HTML5 Client-side Storage

2010-03-23 Thread g p
Check this project out:
http://code.google.com/p/gwt-mobile-webkit/wiki/StorageApi

<http://code.google.com/p/gwt-mobile-webkit/wiki/StorageApi>Cheers!

On 22 March 2010 14:25, Giancarlo  wrote:

> Hello!
> Has anybody a good idea of how to store Java objects into  HTML5
> standard Client-side Storage (Session Storage,Local Storage)
>
> Regards
> Giancarlo
>
> --
> 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-tool...@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-tool...@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: What causes com.google.gwt.core.client.JavaScriptException, and how to trace it?

2010-01-21 Thread g p
When you press the compile button in Eclipse, there is a drop down menu
called: Output Style. One of the options there is the detailed. I suppose
that would do the trick ...

2010/1/21 John V Denley 

> Id still like to know how to set this setting via eclipse, which im
> sure is very simple for someone who knows!
>
> Thanks,
> John
>
>
-- 

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-tool...@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/SmartGWT

2009-11-07 Thread g p
Yes, do ask at the above mentioned forum, but as a general rule, try not to
mix the two libraries. Stick to SmartGWT widgets. The two libraries do not
behave well to each other when they are part of the same panel etc. For your
case have a look at the Tab widgets provided by the SmartGWT library (i.e.
TabSet and Tab classes).

2009/11/6 mariyan nenchev 

> Try asking at http://forums.smartclient.com/forumdisplay.php?f=14
>
>
> >
>

--~--~-~--~~~---~--~~
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: Timers

2009-10-23 Thread g p
You might want to have a look here as well:
http://googlecode.blogspot.com/2009/07/gmail-for-mobile-html5-series-using.html

Cheers!

2009/10/22 ben fenster 

>
> i was wondering how many timers can operate together and how would a
> collisution between them effect performence
>
> is it better to use one timer with a list of stuff that need to be
> updated on timeout or is it better to make a timer for each 
>
> another thing is if i use iframe to display other sites and those
> sites has timers do they also run on my main thread and disturb my
> timers and my my main gwt app performence???
> >
>

--~--~-~--~~~---~--~~
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: TomTom in Amsterdam hiring

2009-10-20 Thread g p
Dear Vicio,

Can I please have a description for this job opening?Thanks in advance!

2009/10/18 Vicio 

>
> Hi,
>
> sorry for the off topic.
>
> In TomTom (Amsterdam) we are looking for GWT developers, the job post
> is not still available in the website but please send me a private
> email to receive a full description.
>
>
> Cheers,
> V.
> >
>

--~--~-~--~~~---~--~~
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: SmartGWT Extensions

2009-09-25 Thread g p
I know this might sound stupid, but always double check the names between
the ListGridField and the DataSourceField . If the do not exactly match the
data won't be pulled by the ListGrid. A good way to make sure your ListGrid
works with your DataSource is to set the DataSource as clientOnly and use
some test data. When you are ready with the ListGrid, switch it to server
bound DataSource and debug your CRUD methods.


> > > But, theSmartGWTListGrid shows 23 rows, and the right column names,
> > > but no data is listed there.
>

--~--~-~--~~~---~--~~
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 cast object to Widget type?

2009-05-05 Thread prabu p
In that case you need to use switch case after you get the class name, to
match all the Widget types.

hope this would help you.

~ Prabu


On Tue, May 5, 2009 at 6:12 AM, matttai  wrote:

>
> Hi guys, here is my problem. How do i get the type of a widget and
> cast it. I am currently trying something like this but of course it
> does not work. Any help will be appreciated. Thanks!
>
> for(Widget widget:array)
> {
>((this.getParent().getClass().getName()) widget).someMethod
> (this);
> }
>
>
> >
>

--~--~-~--~~~---~--~~
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 Diagrams

2009-04-10 Thread Alex P . Graças

I am creating a diagram editor, and I've found the GWT diagrams lib.
I'd like to know about if there is some project similar to gwt-
diagrams, since it looks abandoned there is now update since October.

Regards,

Alex P. Graças

--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Email Validator

2009-03-11 Thread raga p
Hello All,

I am new to GWT am working on validation controls in GWT
my requirement is validate the email validator..

can any inform me how to implement validation controls for Email Validator..
or attach the sample code for using it..

Thanks & Regargs,
Ragavan

--~--~-~--~~~---~--~~
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: Portal/Portlets - like gwt-ext but in pure gwt ...

2008-11-21 Thread Ian P. Christian

Did you see the SmartGWT posted to the list a couple of days ago?

2008/11/21 cloudycity <[EMAIL PROTECTED]>:
>
> I am needing to add a "dashboard" to our current gwt app:
>
> I would like to create something similar to gwt-ext's portal and
> portlets but in gwt only - we are moving away from gwt-ext for various
> reasons.
>
> It seems like a flex table of panels with drag and drop could be
> implemented but it would be nice if something similar was available.
>
> I like the google/ig page and gadgets but don't know how that would
> work with our application.
>
> Just thinking at this point but any help would be appreciated.
>
> >
>

--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---



Re: authentication in GWT

2008-11-19 Thread Ian P. Christian

2008/11/19 olivier nouguier <[EMAIL PROTECTED]>:
>
> gwt-log-2.5.2 is not available on public repository, did you install
> by hand in yours ?


Ohh... opps... I think this is the problem.  I forgot that because
2.5.2 wasnt' available, I downgraded it to 2.5.0.

sorry for the noise ;)

--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---



Re: authentication in GWT

2008-11-18 Thread Ian P. Christian

2008/11/18 olivier nouguier <[EMAIL PROTECTED]>:

> Yes there is a war sample and the project that generate that war
> (net.orcades.spring-gwt-sample).
> All is provided in the checkout.
> It's maven driven.

This sample doesn't appear to work correctly 'out of the box'.

I did a 'source:jar install' on the 3 components, and then tried to
run the gwt-sample app:

[EMAIL PROTECTED]:~/net-orcades-spring-read-only/orcades-spring-gwt-sample$
mvn gwt:gwt

URL: http://localhost:/springsample.SampleModule/SampleModule.html
"Cannot find resource 'SampleModule.html' in the public path of module
'springsample.SampleModule' "

Regards,

Ian

--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---



Re: authentication in GWT

2008-11-18 Thread Ian P. Christian

2008/11/18 Ian P. Christian <[EMAIL PROTECTED]>:
>> Yes there is a war sample and the project that generate that war
>> (net.orcades.spring-gwt-sample).
>> All is provided in the checkout.
>> It's maven driven.
>
> This sample doesn't appear to work correctly 'out of the box'.


Sorry, perhaps this would have been more useful:

[INFO] establishing classpath list (buildClaspathList - scope = COMPILE)
[INFO] google.webtoolkit.home (gwtHome) set, using it for GWT
dependencies - /home/pookey/src/gwt-linux-1.5.3
Loading module 'springsample.SampleModule'
   Loading inherited module 'com.allen_sauer.gwt.log.gwt-log-INFO'
  [ERROR] Unable to find
'com/allen_sauer/gwt/log/gwt-log-INFO.gwt.xml' on your classpath;
could be a typo, or maybe you forgot to include a classpath entry for
source?
   [ERROR] Line 9: Unexpected exception while processing element 'inherits'
com.google.gwt.core.ext.UnableToCompleteException: (see previous log entries)

--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---



'odd' error when DISPLAY not set.

2008-11-18 Thread Ian P. Christian

I suggest this error is a little misleading. I'm not sure if this
could be considered a bug, and if so - where the bug actaully lies.

"export DISPLAY=:0"  fixes the problem (the var became unset as I was
working in a chroot'ed 32bit env within a 64bit platform)

[EMAIL 
PROTECTED]:~/workspace/net-orcades-spring-read-only/orcades-spring-gwt-sample$
mvn gwt:gwt
[INFO] Scanning for projects...
[INFO] Searching repository for plugin with prefix: 'gwt'.
[INFO] 
[INFO] Building Spring GWT Sample
[INFO]task-segment: [gwt:gwt]
[INFO] 
[INFO] Preparing gwt:gwt
[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:compile]
[INFO] Nothing to compile - all classes are up to date
[INFO] [gwt:gwt]
[INFO] source web.xml present -
/home/pookey/workspace/net-orcades-spring-read-only/orcades-spring-gwt-sample/src/main/webapp/WEB-INF/web.xml
- using it with embedded Tomcat
[INFO] establishing classpath list (buildClaspathList - scope = RUNTIME)
[INFO] google.webtoolkit.home (gwtHome) set, using it for GWT
dependencies - /home/pookey/src/gwt-linux-1.5.3
Exception in thread "main" org.eclipse.swt.SWTError: No more handles
[gtk_init_check() failed]
at org.eclipse.swt.SWT.error(SWT.java:3400)
at org.eclipse.swt.widgets.Display.createDisplay(Display.java:793)
at org.eclipse.swt.widgets.Display.create(Display.java:781)
at org.eclipse.swt.graphics.Device.(Device.java:145)
at org.eclipse.swt.widgets.Display.(Display.java:452)
at org.eclipse.swt.widgets.Display.(Display.java:443)
at org.eclipse.swt.widgets.Display.getDefault(Display.java:1522)
at com.google.gwt.dev.GWTShell.(GWTShell.java:366)
at com.google.gwt.dev.GWTShell.(GWTShell.java:401)
at com.google.gwt.dev.GWTShell.main(GWTShell.java:355)

--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---