Re: Best VPN for Linux based GWT development

2012-01-09 Thread Konstantin Zolotarev
I'm using openvpn + ubutnu server 11.04. Works great. -- 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/-/sW19Ieg6okQJ. To post to this group, send

Re: Ideal development platform for GWT/GAE?

2011-11-28 Thread Konstantin Zolotarev
I'm using Ubuntu Linux 11.04 and 2 monitors. Core 2 Duo (3.0 Hhz), 8 GB RAM - works great -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Re: GWT Event Bus basics

2011-11-28 Thread Konstantin Zolotarev
Great example. I think it will be very helpful. -- 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/-/PnqHTDyWs0MJ. To post to this group, send email

Re: GWT Designer fails under Eclipse 3.7 with latest update

2011-10-19 Thread Konstantin Zolotarev
Same error. Eclipse 3.7 (x64) org.eclipse.wb.internal.core.utils.exception.DesignerException: 4107 (Unable to load native library.). gwt-ll at com.google.gdt.eclipse.designer.GwtExceptionRewriter.rewrite(GwtExceptionRewriter.java:74) at

Re: CellTable custom header help.

2011-10-13 Thread Konstantin Zolotarev
There is no problem with table styles. I have problem with table header. I couldn't create 2 level header. Is there any solutions ? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Re: CellTable custom header help.

2011-10-13 Thread Konstantin Zolotarev
Thanks a lot. Tomorrow I'll check this. -- 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/-/gzquMeWyD_8J. To post to this group, send email to

Re: CellTable custom header help.

2011-10-13 Thread Konstantin Zolotarev
Exactly this I was looking for. Thanks one more time ! -- 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/-/zupz1pZc1H4J. To post to this group,

Re: Two widget in a single table cell

2011-10-11 Thread Konstantin Zolotarev
Try CompositeCell http://google-web-toolkit.googlecode.com/svn/javadoc/latest/com/google/gwt/cell/client/CompositeCell.html -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Re: Differences between Netbeans and Eclipse in programming GWT

2011-10-10 Thread Konstantin Zolotarev
In eclipse it runing in debug model. To run code into browsers without dev plugin you need to compile project Google - GWT Compile, context menu. There is no good plugins avaliable to work with GWT for NetBeans. You could find lot of info about eclipse here : http://goo.gl/UtzwM -- You

Re: JSON issue with GWT

2011-10-09 Thread Konstantin Zolotarev
JsArrayYourModel modelsList = JsonUtils.safeEval(yourJsonString); And then you cuold use JsArrayhttp://google-web-toolkit.googlecode.com/svn/javadoc/latest/com/google/gwt/core/client/JsArray.htmlto get any model you need. -- You received this message because you are subscribed to the Google

Re: Show Images

2011-10-09 Thread Konstantin Zolotarev
You could use JSNI + HTML5 to acces images from desktop. -- 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/-/a3TuW1xzMEEJ. To post to this group,

CellTable custom header help.

2011-10-06 Thread Konstantin Zolotarev
How could I create such table ? https://lh5.googleusercontent.com/-P1lNQo2h0OU/To1OkdUm0aI/AMk/9PQw283WFOo/Screenshot.jpg -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Re: How to add style to Hyperlink in UiBinder?

2011-10-03 Thread Konstantin Zolotarev
have you added your client bundle to UiBinder ? ui:with field='res' type='com.my.app.widgets.logoname.Resources'/ -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Re: How to add style to Hyperlink in UiBinder?

2011-10-03 Thread Konstantin Zolotarev
I think the best way will be to define style something like this: a:hover { 1. color: #06C; 2. text-decoration: underline; } into global css file. Because same thing is defined into your theme css file and it may overwrite your one. And you should place CSS file into right order. Take

Re: GWT4Touch Official Release!

2011-10-03 Thread Konstantin Zolotarev
A little bug: https://picasaweb.google.com/lh/photo/8z7AN3yoHVQFfH5c9KyHzUPaUYuYPNK_IbcBfo3gU0U?feat=directlink Here is form example. And it couldn't be dragged down. I have no ability to see Bio field. Android 2.2 (sdk emulator), android 2.3.4 (google nexus one).

Re: LocalHost and Same Origin Policy Question

2011-10-03 Thread Konstantin Zolotarev
What browser do you use ? Is it into debug mode or in production ? -- 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/-/ngsQ4QdJu0gJ. To post to this

Error on JSON parsing

2011-09-06 Thread Konstantin Zolotarev
I'm trying to get JavaScriptObject from JSON String String looks like : {id:1,username:admin,token:dq77a4uslui7neqcvidajofrg0} I'm doing this via JSINI : public final native JavaScriptObject userFromJson(String json) /*-{ return eval(json); }-*/; And get this error : 14:18:24.740 [ERROR]

Re: Error on JSON parsing

2011-09-06 Thread Konstantin Zolotarev
Just found how to fix this. Need to use () with json string. example: Json string : {id:1,username:admin,token:dq77a4uslui7neqcvidajofrg0} must became : ({id:1,username:admin,token:dq77a4uslui7neqcvidajofrg0}) Then eval works perfect. Another question. How could i get JavascriptObject

Re: GWT MVP

2011-04-06 Thread Konstantin Zolotarev
I think first you should read about gwt platform ( http://code.google.com/p/gwt-platform/) and google-gin ( http://code.google.com/p/google-gin/) -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to