Re: Best MVP framework right now?

2014-12-19 Thread Sergey Pascan
http://eskimo.io - new node.js boilerplate framework to build fast MVP's. On Friday, September 7, 2012 6:12:49 AM UTC+3, vehdra music wrote: Hi, already know about gwtp, mvp4g, guit, GWT MVP, etc. But I have been some time outside from GWT world :( so now I am returning to this beatiful

Re: GWT Developer Plugin installed but (apparently) not recognized

2014-05-22 Thread Sergey Shpikin
Super dev mode is obviously *worse* than the classic dev mode. You can't debug your app transparently, both client and server in Eclipse, trace it, watch the vars etc. Basically, super dev mode is a fast crutch which doesn't help to debug at all. I can just dump vars using console.log as well.

Re: GWT Developer Plugin installed but (apparently) not recognized

2014-05-22 Thread Sergey Shpikin
Thanks for your answers! I know that the classic dev mode had to be replaced, just didn't expect this to happen so soon without an on par working analog. I'll try to dig into SDBG on my free time but until that I'll use Chromium 34 (it works fine btw, tried today without issues so far). Happy

When I deploy GWT project to production, hosted.html contains links to external URLs.

2014-03-14 Thread Sergey Kamenev
Our tester are not happy about this line in hosted.html: loadIframe(http://gwt.google.com/missing-plugin;); Can I deploy so that hosted.html does not contain such lines? Thank you. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

Re: PropertyAcess : Define condition values for label in PropertyAcess

2013-08-10 Thread Sergey Stupin
Why can't you just simply define your getter method as follows: public String getLabelProp() { return getLabel() == null ? getId() : getLabel(); } I think it's pretty legal to implement getter in a such way. пятница, 9 августа 2013 г., 1:37:21 UTC+4 пользователь Chulbul Pandey написал: I

Re: Firing a click event on a CellTable

2013-06-30 Thread Sergey Kovin
similar case: import com.google.gwt.dom.client.Document; import com.google.gwt.dom.client.NativeEvent; import com.google.gwt.event.dom.client.ContextMenuEvent; import com.google.gwt.event.dom.client.ContextMenuHandler; import com.google.gwt.user.client.DOM; import

Re: [gwt-contrib] Functional interfaces

2013-06-29 Thread Sergey Zaytsev
In my opinion such feature would be appreciated event in terms of being fit with modern Java ! So, my vote is for it! Certainly! 2013/6/29 Jens jens.nehlme...@gmail.com What do you think about adding functional interfaces as RPC callbacks to GWT in the next release and make their use

Error in overlay types inheritance

2013-04-09 Thread Sergey Vinogradov
Hi, I have following class hierarchy: interface Properties --PropertiesOverlay ReportRowModelOverlay TrendValueModelOverlay And GWT compiler throw error: ERROR: Exception initializing module com.google.gwt.dev.jjs.InternalCompilerException: Already seen an implementing JSO subtype

[gwt-contrib] GWT in Google Summer of Code 2013

2013-03-15 Thread Sergey Tselovalnikov
Does GWT participates in GSoC 2013http://www.google-melange.com/gsoc/homepage/google/gsoc2013 ? I am very interested in participating in the developing of GWT and would be glad to participate as a student in the development of GWT in GSoC. I found the last discussion of the GWT in GSoC 2007

Re: GWT Elemental Problem with Listner

2012-09-22 Thread Sergey
I solved it when switch from opedJDK to oracle JDK. -- 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/-/wItkgQZvdloJ. To post to this group, send

Re: enable closure compiler

2012-08-26 Thread Sergey
use -XenableClosureCompiler option. -- 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/-/0eIURq10NvwJ. To post to this group, send email to

Elemental documentation

2012-08-21 Thread Sergey
Hi. Where I can find Elemental documentation? -- 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/-/Rcra4qz23y4J. To post to this group, send email to

Re: Elemental documentation

2012-08-21 Thread Sergey
Thanks. How to I can get elemental javadoc? It is missing in http://google-web-toolkit.googlecode.com/svn/javadoc/latest/index.html?overview-summary.html . -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the

GWT Elemental Problem with Listner

2012-08-20 Thread Sergey
Hi. I have the same problem with addEventListener https://groups.google.com/forum/?fromgroups#!topic/google-web-toolkit/HGir5DKzf6g[1-25] Somebody knows the solution? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion

Re: Compile Gin-enabled GWT application with ant

2012-04-27 Thread Sergey Stupin
I have exactly the same problem. I've been spent already 2 days researching this case. How can I fix this f***ing error? суббота, 12 декабря 2009 г., 23:16:58 UTC+4 пользователь Chris написал: Hi I'm trying to build by gwt application with ant. I can succesfully compile everything

Re: Compile Gin-enabled GWT application with ant

2012-04-27 Thread Sergey Stupin
I find the answer. Modify classpath by adding your compiled GWT classes (that's why GWT compiler could not found it), because GIN needs class files to compile successfully. classpath pathelement location=src/main/java/ pathelement location=${classes.dir}/ path refid=classpath/

Re: [gwt-contrib] GWT the tree data gid component

2012-01-26 Thread Sergey Zaytsev
I know that such widget exists in GXT library (called smth like TreeGrid) 2012/1/27 CRISTI Stamate juventino0...@googlemail.com Can anyone tell me if exist in GWT the tree data gid component? I mean by tree data grid a component that is: - data grid like in GWT 2.4 (fixed header and footer

Re: [gwt-contrib] Maven repo with GWT snapshots

2012-01-20 Thread Sergey Zaytsev
try to use info from the following official link http://code.google.com/p/gwt-maven/ 20.01.2012 18:58 пользователь Alexander Orlov alexander.or...@loxal.net написал: Does anybody know a Maven repo with the latest GWT snapshots? Compiling GWT myself is not an option in my particular case. --

Code splitting size analysis

2012-01-12 Thread Sergey
can I know what code exactly are going to be split and what not? Compiling with -htmlReport is not answering this question, or mb I didn't notice some features? Thanks, Sergey. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post

How to catch browser Refresh event

2012-01-10 Thread Armishev, Sergey
() { @Override public void onWindowClosing(ClosingEvent event) { logout(); } }); I am in development mode now using Firefox 9.0.1 -Sergey

RE: gwt gui with no servlet container

2012-01-05 Thread Armishev, Sergey
http://gwt.google.com/samples/Showcase/Showcase.html most of the GWT demos are pure client side : javascript+css -Sergey -Original Message- From: google-web-toolkit@googlegroups.com [mailto:google-web-toolkit@googlegroups.com] On Behalf Of Sebastian Gurin Sent: Wednesday, January 04

RE: GWT as reporting application

2011-12-16 Thread Armishev, Sergey
written in javascript but have GWT wrappers. Look at the highcharts.com web site for details -Sergey From: google-web-toolkit@googlegroups.com [mailto:google-web-toolkit@googlegroups.com] On Behalf Of Z.A Jafari Sent: Friday, December 16, 2011 9:44 AM To: google-web-toolkit@googlegroups.com Subject

RE: Basic MDI (Multiple Document Interface) question

2011-12-06 Thread Armishev, Sergey
I build my whole MDI Web app with http://code.google.com/p/gwtwindowmanager/ -Sergey -Original Message- From: google-web-toolkit@googlegroups.com [mailto:google-web-toolkit@googlegroups.com] On Behalf Of Ed Sent: Tuesday, December 06, 2011 4:25 AM To: Google Web Toolkit Subject: Re

RE: Basic MDI (Multiple Document Interface) question

2011-12-06 Thread Armishev, Sergey
. You probably need to test it on new browsers as well since library has no new development from 2008. -Sergey -Original Message- From: google-web-toolkit@googlegroups.com [mailto:google-web-toolkit@googlegroups.com] On Behalf Of Zakaluka Sent: Tuesday, December 06, 2011 12:40 PM

RE: Basic MDI (Multiple Document Interface) question

2011-12-06 Thread Armishev, Sergey
One more point to consider. This MDI solution is hard to use on mobile phones -Sergey -Original Message- From: google-web-toolkit@googlegroups.com [mailto:google-web-toolkit@googlegroups.com] On Behalf Of Armishev, Sergey Sent: Tuesday, December 06, 2011 2:03 PM To: google-web-toolkit

RE: GWT Performance Issues

2011-12-06 Thread Armishev, Sergey
Publish your code. I suspect the problem might be there. Also Chrome in development mode might be slow (or very slow) compare to production where it usually the fastest browser -Sergey From: google-web-toolkit@googlegroups.com [mailto:google-web-toolkit@googlegroups.com] On Behalf Of CSchulz

RE: Best Visualization for GWT?

2011-11-22 Thread Armishev, Sergey
Just be aware that for real time visualizations you need some special Highcharts configurations. Otherwise it doesn't work on Safari and IE 6,7,8 See my discussions and demos on Highcharts http://highslide.com/forum/viewtopic.php?f=9t=12936 -Sergey From: google-web-toolkit@googlegroups.com

RE: Highcharts - updating chart with data

2011-11-07 Thread Armishev, Sergey
charting and consider it an excellent library that you can easily customize for your needs -Sergey From: google-web-toolkit@googlegroups.com [mailto:google-web-toolkit@googlegroups.com] On Behalf Of George Agiasoglou Sent: Monday, November 07, 2011 6:11 AM To: google-web-toolkit@googlegroups.com

RE: Highcharts - updating chart with data

2011-11-07 Thread Armishev, Sergey
combination of Highcharts or GWT charts on the browser side for interactive charts and Node.js or some headless WebKit (PhantomJs) on the server to make chart images from the same code -Sergey From: google-web-toolkit@googlegroups.com [mailto:google-web-toolkit@googlegroups.com] On Behalf

RE: future of gwt who use gwt

2011-11-02 Thread Armishev, Sergey
of work needed for such app if you use JavaScript -Sergey From: google-web-toolkit@googlegroups.com [mailto:google-web-toolkit@googlegroups.com] On Behalf Of David Chandler Sent: Tuesday, November 01, 2011 11:49 AM To: google-web-toolkit@googlegroups.com Subject: Re: future of gwt who use gwt

Deferred Binding in gwt

2011-08-29 Thread Tarnakin Sergey
Hi, I have to compile different code for safari and chrome browsers. The problem is when I use code like this replace-with class=org.raccoon.hit.client.ui.balancenew.BalanceViewImplChrome when-type-is class=org.raccoon.hit.client.ui.balance.BalanceViewImplAll/ any

Re: Deferred Binding in gwt

2011-08-29 Thread Tarnakin Sergey
? -- 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,

Re: Cannot display Facebook Like or Send button in GWT

2011-08-11 Thread Sergey Kargopolov
requests to Facebook via gwtfb. I wonder why FB Send button does not appear even though in generated HTML source it looks like GWT HTML panel does it's job and inserts FB tags correctly. Sergey On Thursday, August 11, 2011, BST babusri...@gmail.com wrote: Probably you may find something

GWT contextual gadget in Eclipse

2011-08-02 Thread Sergey Glotov
Hello everyone. I'm a newcomer in GWT and I can't understand how to create GWT contextual gadged, which would be hosted an Google Apps Engine. The problem is there is no parametr view=card in compiled gwt gadget even if I use @ContentType(views={card}) in my java class. I understand I can edit

howto make line symbols other then squares in GWT charts

2011-06-07 Thread Armishev, Sergey
Hi, In all GWT charts examples I see only square symbols on line graphs. Can I setup circle or triangle instead? -Sergey /PREBRspan style='font-size:8.0pt;font-family:Arial,sans-serif;color:#003366' _BR This electronic message and any

RE: GWT RPC - WebServiceClient

2011-04-22 Thread Armishev, Sergey
and back. Below is POJO file generated by cxf and corresponding class which is GWT-RPC compatible. See Calendar class that is not supported. Let me know if you need more help -Sergey // This class was generated by the JAXRPC SI, do not edit. // Contents subject to change without notice

RE: Navigation between different html pages

2011-04-21 Thread Armishev, Sergey
String site = yourpage.html; if(!GWT.isProdMode()) site += ?gwt.codesvr=127.0.0.1:9997; Window.Location.replace(GWT.getHostPageBaseURL() + site); From:

RE: SSL troubles

2011-04-05 Thread Armishev, Sergey
In addition to certificate don't forget to configure your tomcat for ssl connection (https). -Sergey -Original Message- From: google-web-toolkit@googlegroups.com [mailto:google-web-toolkit@googlegroups.com] On Behalf Of Patrick Sent: Monday, April 04, 2011 2:57 PM To: Google Web Toolkit

RE: How to add ClickHandler for Div Element?

2011-03-29 Thread Armishev, Sergey
) { regCmdExitClick.removeHandler(); regCmdExitClick = null; } } }, ClickEvent.getType()); } Hope it helps -Sergey -Original Message- From: google-web-toolkit@googlegroups.com [mailto:google-web-toolkit@googlegroups.com

RE: Spring Security

2011-03-29 Thread Armishev, Sergey
-Sergey -Original Message- From: google-web-toolkit@googlegroups.com [mailto:google-web-toolkit@googlegroups.com] On Behalf Of Alexei Telles Sent: Tuesday, March 29, 2011 2:22 PM To: Google Web Toolkit Subject: Spring Security Hi, I need to implement Spring Security in my GWT web application

move or not to move to Firefox 4 for GWT development

2011-03-23 Thread Armishev, Sergey
I want to upgrade my Firefox browser to version 4 on my development machine. Does GWT development plugin support it without known problems? -Sergey /PREBRspan style='font-size:8.0pt;font-family:Arial,sans-serif;color:#003366' _BR

getClientWidth() - too many calls in gwt application. How to reduce?

2011-03-07 Thread Sergey Shvets
. So, the question is: Does anybody have the same issue or there are mistakes in my application which lead too much calls of this function? Thanks, Sergey -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email

RE: howto check HTML5 audio tag supported in a browser

2011-03-04 Thread Armishev, Sergey
or something wrong with converter? Which converter could you recommend then? -Sergey -Original Message- From: google-web-toolkit@googlegroups.com [mailto:google-web-toolkit@googlegroups.com] On Behalf Of Philip Rogers Sent: Thursday, March 03, 2011 8:27 PM To: Google Web Toolkit

RE: howto check HTML5 audio tag supported in a browser

2011-03-04 Thread Armishev, Sergey
One more thing I forgot The sound itself plays with ogg file on Firefox but audio control still doesn't show up compare to Chrome browser. Any ideas why? -Sergey -Original Message- From: google-web-toolkit@googlegroups.com [mailto:google-web-toolkit@googlegroups.com] On Behalf

RE: howto check HTML5 audio tag supported in a browser

2011-03-03 Thread Armishev, Sergey
/ On Mar 3, 12:31 am, John LaBanca jlaba...@google.com wrote: GWT has an Audio widget for HTML5 audio support: com.google.gwt.media.client.Audio.isSupported() Thanks, John LaBanca jlaba...@google.com On Wed, Mar 2, 2011 at 6:29 PM, Armishev, Sergey sarmis...@idirect.netwrote:  I am new

howto check HTML5 audio tag supported in a browser

2011-03-02 Thread Armishev, Sergey
for audio . Anybody knows and can recommend other libraries? Any GWT based libraries? -Sergey /PREBRspan style='font-size:8.0pt;font-family:Arial,sans-serif;color:#003366' _BR This electronic message and any files transmitted

Exception in GWT/GAE app only in hosted mode

2011-02-23 Thread Sergey Frizen
Hi all! I have a problem launching my app only in hosted mode. On GAE server all works fine. This is a code of service implementation: / package com.jsoft.frontoffice.server; import java.util.Date; import java.util.logging.Logger; import

RE: $doc.body.createTextRange

2011-02-23 Thread Armishev, Sergey
From the top of my head (thanks to GWT , I don't need to remember all this anymore!) In IE document.body.createTextRange() On all other browsers document.selection.createRange() -Sergey -Original Message- From: google-web-toolkit@googlegroups.com [mailto:google-web-toolkit

RE: GWT webapp into an IFRAME

2011-02-02 Thread Armishev, Sergey
I put my app into CGI based framework and my GWT based app was running inside iframe. The only difficulty was server side configuration and it depends how the your portal organized -Sergey From: google-web-toolkit@googlegroups.com [mailto:google-web-toolkit@googlegroups.com] On Behalf

how to implement branding in GWT

2011-01-28 Thread Armishev, Sergey
I need to implement branding in my Web application and I asking community to share their experience how it was implemented. In branding I need to show some custom image (logo image), change references in links (contacts, help), some labels text. -Sergey /PREBRspan style='font-size:8.0pt

gwtp puzzlebazar problems

2011-01-20 Thread Armishev, Sergey
. I am using AppEngine 1.4 and GWT-2.1.0 Am I doing something wrong or just code is broken somehow? -Sergey /PREBRspan style='font-size:8.0pt;font-family:Arial,sans-serif;color:#003366' _BR This electronic message and any files

GWT 2.1 showcase padding question

2010-10-12 Thread Armishev, Sergey
. -Sergey /PREBRspan style='font-size:8.0pt;font-family:Arial,sans-serif;color:#003366' _BR This electronic message and any files transmitted with it containsBR information from iDirect, which may be privileged, proprietaryBR and/or confidential

RE: Recommendations for improving performance of a mobile application

2010-10-11 Thread Armishev, Sergey
exceeds certain critical level when cost of update is higher then full update. Another hint is to change only data that visible to user. Usually there are not much visible data particularly on mobile device. -Sergey -Original Message- From: google-web-toolkit@googlegroups.com [mailto:google

RE: Recommendations for improving performance of a mobile application

2010-10-11 Thread Armishev, Sergey
recommend to test your app on Android first to see the best performance and then go to other mobile devices -Sergey -Original Message- From: google-web-toolkit@googlegroups.com [mailto:google-web-tool...@googlegroups.com] On Behalf Of denis56 Sent: Monday, October 11, 2010 4:44 PM

RE: GWT portlets application

2010-10-07 Thread Armishev, Sergey
If you want multi window interface with ability to drag/drop/minimize/maximize take a look at GWT window manager. I used it in my web application and my customers are very happy http://www.gwtwindowmanager.org/ Here is a demo URL http://www.gwtwindowmanager.org/demo/GwmDemo.html -Sergey

RE: Help: Development of large App with GWT

2010-10-06 Thread Armishev, Sergey
to port MFC or Swing client. You use GWT/Java and you reuse 80% of original code. Now imagine porting to Javascript 4.Automatic code generation. 5.Non trivial real time apps like alarms/events monitoring -Sergey -Original Message- From: google-web-toolkit@googlegroups.com [mailto:google

RE: Translating already compiled Java?

2010-09-09 Thread Armishev, Sergey
You can automatically generate POJO classes from the same WSDL. Why are you doing this manually? In my GWT app I used SUN jax rpc for that http://java.sun.com/webservices/jaxrpc/overview.html Let me know if you need more info -Sergey -Original Message- From: google-web-toolkit

Debugging Maven GWT project with GlassFish

2010-08-13 Thread Sergey Ponomarev
Hello. Could you please tell me is it possible to configure maven-gwt-plugin so it will use existing GlassFish for hosted mode but not the bundled Jetty or Tomcat. I've read there is a server option but what should I put there? Or may be some other way? Thank you. -- You received this message

Re: Debugging Maven GWT project with GlassFish

2010-08-13 Thread Sergey Ponomarev
You'd have to start your GlassFish server (don't know how to do it with Maven, but you probably know) and then run (gwt:run or gwt:debug) using the noServer configuration option:http://mojo.codehaus.org/gwt-maven-plugin/run-mojo.html#noServer mvn gwt:debug -DnoServer=true

RE: WSDL

2010-08-12 Thread Armishev, Sergey
= objectType; } public boolean isInitialized() { return initialized; } public void setInitialized(boolean initialized) { this.initialized = initialized; } } -Sergey -Original Message- From: google-web-toolkit@googlegroups.com [mailto:google-web-tool

GWT Login module in an iframe.

2010-07-18 Thread Sergey Ponomarev
Hi, i'm trying to implement login module as a GWT application which is placed in an iframe and calls external event handlers on login events. The problem is i can't set handler function if iframe's DOM from parent page. The host page looks like

Re: Is DeferredCommand 'queue' executed in order of command addition?

2010-03-11 Thread sergey-miryanov
Oh, thank you! :) On Mar 11, 10:06 pm, Thomas Broyer t.bro...@gmail.com wrote: On Mar 11, 5:10 pm, sergey-miryanov sergey.mirya...@gmail.com wrote: Thank you for your answer, asking this question I look gchart sources in parallel :) I'm looking at gwt javadoc (http://google-web

Re: Is DeferredCommand 'queue' executed in order of command addition?

2010-03-11 Thread sergey-miryanov
Thank you for your answer, asking this question I look gchart sources in parallel :) I'm looking at gwt javadoc (http://google-web-toolkit.googlecode.com/ svn/javadoc/2.0/index.html?overview-summary.html), but I don't see Scheduler class (I'm very new in gwt) Sergey On Mar 11, 3:45 pm, Thomas

Is DeferredCommand 'queue' executed in order of command addition?

2010-03-10 Thread sergey-miryanov
Hi all, I google it, but without results. Is DeferredCommand guaranteed that command queue will be executed in order of command addition? Sergey -- 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

Problem: When XmlRpcRequest starts GUI freezes

2010-03-03 Thread sergey-miryanov
and explain how to cook XmlRpcRequest and GUIs. Best regards, Sergey. -- 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

Re: FW: problem compiling gwt 2.0 using ant

2010-01-20 Thread Sergey
Make sure, that you have just one version of GWT libraries in classpath, it works for me. -- 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

main.css on hosted mode

2009-10-05 Thread Sergey Elin
Hi, Just found GWT completely ignores my main.css in hosted mode. If I give any other name to the file, for example app.css - everything is ok... --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: Open Source WIdget Library

2009-10-04 Thread Sergey Elin
Another library is ExtGWT http://www.extjs.com/products/gxt/ 2009/10/3 mikedshaffer mikedshaf...@gmail.com: You should also take a look at SmartGWT http://code.google.com/p/smartgwt/ On Oct 3, 5:56 am, James jdrinka...@gmail.com wrote: Hello All, I've been looking for the best open source

errors in compiling mosaic client code version 0.1.9.1

2009-05-15 Thread sergey
cannot be resolved [ERROR] Line 47: Alignment cannot be resolved -Sergey --~--~-~--~~~---~--~~ 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

TreeTable from incubator

2008-12-11 Thread sergey
I need TreeTable in my project and consider using one developed in GWT incubator http://code.google.com/p/google-web-toolkit-incubator/wiki/TreeTable . Somebody has experience using it? What is the status of this project? -Sergey --~--~-~--~~~---~--~~ You received