[gwt-contrib] Re: HashCode H$ property should be not enumerable

2020-06-12 Thread Slava Pankov
Even IE11 is not needed anymore for my projects, there is Edge for Windows 7+, so all my customers are already upgraded. -- You received this message because you are subscribed to the Google Groups "GWT Contributors" group. To unsubscribe from this group and stop receiving emails from it, send

Re: Happy to announce general access for J2CL!

2018-11-13 Thread Slava Pankov
Thank you! On Tuesday, November 13, 2018 at 5:39:28 PM UTC-8, Goktug Gokdogan wrote: > > Dear GWTers! > > We are happy to announce that we have opened up J2CL repository for > general access: > http://github.com/google/j2cl > > Please see the README for details and instructions. > > I also would

Re: java.util.Date clientside incorrect timezone

2018-10-31 Thread Slava Pankov
For properly working with timezones you have to use ZonedDateTime. It's emulated for GWT, see https://github.com/slavap/gwt-joda-java-time On Tuesday, October 30, 2018 at 5:49:25 AM UTC-7, Edson Richter wrote: > > Did you find a solution? > > > > Em quinta-feira, 6 de novembro de 2014 10:18:13

Re: Plug in External Application to GWT

2018-10-31 Thread Slava Pankov
Just use iframe for hosting external app inside of the panel of your GWT app. On Thursday, October 25, 2018 at 3:25:56 PM UTC-7, Vishal Mistry wrote: > > > > On Thursday, 25 October 2018 20:12:49 UTC+11, Jens wrote: >> >> If that external application produces a HTML page then yes, you could >>

Re: GWT 2.9 Questions

2018-09-06 Thread Slava Pankov
ne. > Any idea if we'd want to update to 33.1? > > On Thursday, September 6, 2018 at 5:59:21 AM UTC+2, Slava Pankov wrote: >> >> IMO even "Update CLDR to version 32.0.1 >> <https://github.com/gwtproject/gwt/commit/f81fc698d51cf26f89faca5dde7cf4d1276cc

Re: GWT 2.9 Questions

2018-09-05 Thread Slava Pankov
IMO even "Update CLDR to version 32.0.1 " is worth for releasing GWT 2.9 On Wednesday, September 5, 2018 at 2:57:34 AM UTC-7, Thomas Broyer wrote: > > Replying to everyone in one go. > > On Wednesday, September

Re: GWT2.8 : org.apache.xerces.parsers.XIncludeAwareParserConfiguration cannot be cast to org.apache.xerces.xni.parser.XMLParserConfiguration

2018-07-03 Thread Slava Pankov
For me the following helps in my project's pom.xml: xerces xercesImpl 2.11.0 On Sunday, July 1, 2018 at 12:13:43 AM UTC-7, Leto wrote: > > > > Am Samstag, 30. Juni 2018 14:35:17 UTC+2 schrieb Thomas Broyer: >> >> What's in your classpath? There might probably

Re: [gwt-contrib] Re: The elusive J2CL

2018-06-11 Thread Slava Pankov
@Ivan Markov For some reason I cannot edit my previous message :-( Just want to clarify that I'm extremely grateful for your SDBG tool, it's beautiful software, and it's really sad to hear that you have some doubts about it. On Monday, June 11, 2018 at 7:35:47 PM UTC-7, Slava Pankov wrote

Re: [gwt-contrib] Re: The elusive J2CL

2018-06-11 Thread Slava Pankov
@Ivan Markov Please invest some time to SDBG, it's great tool, very convenient. Despite of Chrome dev.tools, I still prefer SDBG as more natural for java developer. On Thursday, May 31, 2018 at 6:02:43 AM UTC-7, Ivan Markov wrote: > > Don't you think there could've been 2x or even 3x as much

Re: Submit POST data with no callback

2018-03-23 Thread Slava Pankov
kingSubmitter().add(form); > form.submit(); > > > > On Wednesday, March 21, 2018 at 4:19:39 PM UTC-4, Matthew McLarty wrote: >> >> Darn, I was really hoping there'd be an cleaner way but if it works, it >> works, I guess. Thank you, Slava.

Re: Submit POST data with no callback

2018-03-21 Thread Slava Pankov
You can have hidden (display: none) FormPanel with method="post". Then: form.getElement(). cast().setTarget(""); form.setAction(url); form.submit(); That will redirect to specified url with POST. On Wednesday, March 21, 2018 at 11:48:46 AM UTC-7, Matthew McLarty wrote: > > I feel a little silly

Re: Experiences working with SmartGWT

2018-03-15 Thread Slava Pankov
Not sure it is a good choice. I would recommend to look at: https://github.com/GwtMaterialDesign or https://github.com/Axellience/vue-gwt or https://github.com/jqm4gwt/jqm4gwt or any other GWT widget library based on javascript widgets. On Thursday, March 15, 2018 at 9:52:11 AM UTC-7,

Re: [gwt-contrib] The elusive J2CL

2018-03-09 Thread Slava Pankov
Yes, I agree "even basic missing functionalities" sounds scary. And why bazel? It's not even close in popularity with Maven and Gradle. On Friday, March 9, 2018 at 1:52:34 AM UTC-8, Ivan Markov wrote: > > Goktug, sorry for being a but stubborn here, but we need a tad more > visibility: > >

[gwt-contrib] Re: Which API for a future, modern JSON library?

2017-12-11 Thread Slava Pankov
I think it's better to replicate GSON like API on client side. Another option is doing better version of RestyGWT without GWT.create() On Monday, December 11, 2017 at 4:25:04 AM UTC-8, Thomas Broyer wrote: > > Hi all, > > Following up on >

[gwt-contrib] Re: Elemental2:1.0.0-beta-3 released

2017-12-05 Thread Slava Pankov
Why and what for "latest HEAD_SNAPSHOT release of GWT " is requered? I don't see any "serious" changes on

Re: [gwt-contrib] Re: Elemental2:1.0.0-beta-2 released

2017-11-27 Thread Slava Pankov
So it's going to be compatible with GWT 2.8.2 ? On Wednesday, November 22, 2017 at 7:45:28 PM UTC-8, Julien Dramaix wrote: > > Thanks for this feedback Colin. I'll update the pom accordingly and do a > beta-3 release on Tuesday. > > Julien > > On Wed, Nov 22, 2017 at 5:59 PM Colin Alworth

[gwt-contrib] Re: GWT 2.8.2 release => [ERROR] ... XmlRootElement ... XmlElement ... cannot be resolved to a type

2017-10-20 Thread Slava Pankov
Try to add dependency to your pom.xml: javax.xml.bind jaxb-api 2.3.0 sources provided On Friday, October 20, 2017 at 8:32:02 AM UTC-7, Michael Joyner wrote: > > Eh... > > I changed my gradle build config to use 2.8.2 and started getting import > annotation errors

Re: GWT 2.8.2 release => [ERROR] ... XmlRootElement ... XmlElement ... cannot be resolved to a type

2017-10-20 Thread Slava Pankov
Try to add dependency to your pom.xml: javax.xml.bind jaxb-api 2.3.0 sources provided On Friday, October 20, 2017 at 8:32:20 AM UTC-7, Michael Joyner wrote: > > Eh... > > I changed my gradle build config to use 2.8.2 and started getting import > annotation

Re: GWT 2.8.2 release

2017-10-19 Thread Slava Pankov
Thank you! On Thursday, October 19, 2017 at 1:30:49 PM UTC-7, Colin Alworth wrote: > > Today we released the next version of GWT, version 2.8.2. A few quick > highlights from this new release: > >- GWT can now run on Java 9 (though Java 9 features are not yet >supported, coming soon!) >

Integration between Datatables and GWT

2017-10-04 Thread Slava Pankov
Integration of data tables in jqm4gwt is made as plugin, so can be easily extracted and used in your project. It’s stable, I’m using it in huge production project. Though it’s not based on new js interop, but on jsni. -- You received this message because you are subscribed to the Google Groups

Re: Typescript annotations to JsInterop java classes automatic generation tool ready

2017-09-28 Thread Slava Pankov
Great! That will be absolutely must have tool, thank you. On Thursday, September 28, 2017 at 2:54:05 AM UTC-7, Ltearno wrote: > > Hi everyone, > > I made up and published today a tool which uses Typescript type > definitions (.d.ts) and generates the corresponding JsInterop classes for > use

Re: Progressive Web App with Caching and Code Splitting

2017-08-07 Thread Slava Pankov
It would be really nice if you share details or even code of your implementation. On Monday, August 7, 2017 at 7:21:19 AM UTC-7, Gernot Pansy wrote: > > I got it myself working, with a extended Linker and the using of > XhrFragementLoader. > > On Friday, August 4, 2017 at 12:00:55 AM UTC+2,

Re: How to recompile the output of GWT compiler with Closure Compiler?

2017-07-11 Thread Slava Pankov
I've asked similar question https://groups.google.com/forum/#!msg/google-web-toolkit/k_kjIv9Klsg/LZAZiUf9BAAJ;context-place=forum/google-web-toolkit No much results though :-( On Tuesday, July 11, 2017 at 4:57:55 AM UTC-7, Kazik Pogoda wrote: > > I already set up the whole toolchain in my

Re: Chrome Performance tab only shows minified names

2017-05-03 Thread Slava Pankov
Did you add "-style PRETTY" to your debug config? On Wednesday, May 3, 2017 at 5:00:11 AM UTC-7, Anders Forsell wrote: > > Hi, > > I'm only seeing "minified" names in the new Chrome Performance tab where I > would like to see abbreviated names when using SuperDev mode and >

Re: GWT 2.8.0 Eclipse

2017-02-17 Thread Slava Pankov
This one works with GWT 2.8 perfectly: http://storage.googleapis.com/gwt-eclipse-plugin/v3/release Sources are here: https://github.com/gwt-plugins/gwt-eclipse-plugin On Friday, February 17, 2017 at 8:45:25 AM UTC-8, l.s...@behaimits.com wrote: > > Hi, I have noticed that GWT 2.7 is 3 years

Re: GWT 2.8 generates code 14% bigger than GWT 2.7

2016-12-01 Thread Slava Pankov
: > > Please try single permutation > > > > On Thu, Dec 1, 2016 at 1:50 AM, Slava Pankov <pan...@gmail.com > > wrote: > >> SSO is not working for my project, I cannot successfully compile with it. >> Put the following to my gwt.xml, but no luck: >&

Re: GWT 2.8 generates code 14% bigger than GWT 2.7

2016-11-30 Thread Slava Pankov
rkers >>> will allow maximum control to preload other split point or resources, and >>> to absolutely control how your app caches, so you can use previous version, >>> load the next one and in the next page reload the new app version will be >>> used. This is not e

Re: GwtMaterialDesign vs gwt-polymer-elements

2016-11-29 Thread Slava Pankov
I just don't get this trend with "burying" widgets and UiBinder. Even with Errai I don't see any meaningful replacement for composite UI, i.e. design simple blocks as ... and then reuse them with Though with Polymer it looks like it's possible by defining web component for each logical

Re: GWT 2.8 generates code 14% bigger than GWT 2.7

2016-11-28 Thread Slava Pankov
No, I have not tried SSO. But in 2.7 it was working fine without SSO, I will try SSO and let you know. On Saturday, November 26, 2016 at 12:55:25 AM UTC-8, Kirill Prazdnikov wrote: > > Hi > > >> I've tried WITHOUT any success to use closure compiler externally with >> GWT 2.8 >> > > Did you

Re: GWT 2.8 generates code 14% bigger than GWT 2.7

2016-11-25 Thread Slava Pankov
@Jens I've tried WITHOUT any success to use closure compiler externally with GWT 2.8 See my question here: https://groups.google.com/forum/#!searchin/google-web-toolkit/closure$20compiler%7Csort:date/google-web-toolkit/k_kjIv9Klsg/LZAZiUf9BAAJ Still want to find out exact steps to get it

Re: Bug in IE11 with GWT project (White screen after some time)

2016-11-25 Thread Slava Pankov
I'm using jQuery Datatable and GWT 2.8, and don't have any problems with IE11, despite of large (thousands of rows) datasets fetched from the server side. It could be many reasons why your app is failing, try to open web development tools, may be something will be logged there during your app

Re: Internet Explorer Google Web Toolkit Plugin Installing but not Working.

2016-11-14 Thread Slava Pankov
Dev mode works just fine with GWT 2.8 in old Firefox 24 esr and IE11. I'm still using it (together with superdev + sdbg), and devmode is quite better and "faster to develop with" from Java point of view, because variables/expressions tabs in Eclipse are convenient and "live", also hints with

Re: jqm4gwt ver. 1.4.7 released

2016-11-01 Thread Slava Pankov
I will plan switch to js interop in next release, which will be jQuery Mobile 1.5 based. This 1.4.7 version is quite stable, and I have huge project based on it, so decided not to introduce heavy changes, just checked that everything is working fine on GWT 2.8 On Saturday, October 29, 2016 at

jqm4gwt ver. 1.4.7 released

2016-10-28 Thread Slava Pankov
jqm4gwt is an advanced wrapper over the jQuery Mobile framework GWT 2.8 is supported, see here https://github.com/jqm4gwt/jqm4gwt -- 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,

Closure compiler and GWT 2.8.0

2016-10-26 Thread Slava Pankov
Integrated closure compiler was removed in 2.8.0 So now I'm trying to use external (post-processing) call to closure compiler. SIMPLE mode is working just fine, but gives no improvement over standard GWT compilation at all. ADVANCED mode gives improvement (when GWT compiled in PRETTY mode), but

Re: UiBinder alternative

2016-09-08 Thread Slava Pankov
UiBinder should not be removed. It's not about widgets, but about convenient way of defining UI. And also it's quite similar to Android way of developing, so quite comfortable for developers with Android experience. On Thursday, September 8, 2016 at 8:25:52 AM UTC-7, Ahmad Bawaneh wrote: > >

Re: GWT 2.8.0-rc1 and closure compiler

2016-08-04 Thread Slava Pankov
IMO it was a bad idea to eliminate closure compiler from GWT, I've always used it and usually get 5-10% smaller output. It's still possible to use, but "manually". I'm building with PRETTY option, then unzip war file, process all *.cache.js with closure compiler and put them back to war file.

Re: Dev mode issue after updating to rc1

2016-08-03 Thread Slava Pankov
If gwt-maven-plugin 2.8beta1 is used with gwt2.8rc1 - does this dependency override needed? Looks like it just works without it. -- 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,

Re: What is best IDE for developing GWT applications?

2016-02-29 Thread Slava Pankov
I don't know why many people are suggesting IntelliJ for GWT. For example code completion in ui.xml files is not working in IntelliJ, and I don't understand how to develop UI efficiently without it. On Monday, February 29, 2016 at 2:56:06 PM UTC-8, Stefan Falk wrote: > > To be hones I never

Re: Any JSON library that works in both GWT and non-GWT environments?

2016-02-04 Thread Slava Pankov
If your server side is going to be implemented on Java, then just use Errai JAX-RS (it supports Jackson provider, so can be consumed from any client side language). That way you have your domain classes in shared folder, and they are used both server and client side, so you don't have to

Re: GWT Developer Plugin does not work in Chrome

2016-01-11 Thread Slava Pankov
Use Firefox ESR 24.8.1 or Chromium 39 from Dart distribution (though Chromium is not very stable for me, dev mode plugin is hanging up often). And try superdev mode with SDBG (if you are using Eclipse), it's not perfect, but quite usable. On Friday, January 8, 2016 at 2:29:58 AM UTC-8,

Re: [gwt-contrib] GWT 2.8 RC1

2015-11-07 Thread Slava Pankov
Is there any chance to include this fix into 2.8 RC1 https://gwt-review.googlesource.com/#/c/12990/ This fix is tiny and simple, but prevents a lot of annoyance in my project. On Wednesday, October 28, 2015 at 11:28:51 AM UTC-7, Goktug Gokdogan wrote: > > > > On Wed, Oct 28, 2015 at 8:25 AM,

Re: What is planned release date for GWT 2.8 (with lambdas) ?

2015-08-18 Thread Slava Pankov
@Jens Some days ago in IRC and proposed that GWT should do regular releases from the CI server that do not have -SNAPSHOT in their names and have a slightly different version number, e.g. major for breaking changes.timestamp. These CI releases could probably also be done after Google had

Re: Experience with GWT on Mobile

2015-08-06 Thread Slava Pankov
My applications are working perfectly fine on iOS and Android. But I'm not using GWT standard widgets. Instead I'm using jQuery Mobile ones, see https://github.com/jqm4gwt/jqm4gwt On Thursday, August 6, 2015 at 6:34:08 AM UTC-7, nestorjb wrote: Hi I wanted to know if anyone had experience

Re: Include a GSS file in another GSS file?

2015-05-22 Thread Slava Pankov
@provide and @require. See http://blog.arcbees.com/2015/04/28/managing-your-css-files-with-variables-and-a-theme/ On Friday, May 22, 2015 at 5:53:10 AM UTC-7, Ed wrote: How can I include a GSS file in another GSS file ? I have mixin and other gss variable declarations in a General.gss file,

New release of jqm4gwt 1.4.6 is available.

2015-04-27 Thread Slava Pankov
New release of jqm4gwt 1.4.6 is available. It's advanced GWT wrapper over jQuery Mobile. Source: https://github.com/jqm4gwt/jqm4gwt Demos: http://jqm4gwt.appspot.com/ -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this

Re: GWT look and feel

2015-01-21 Thread Slava Pankov
http://jqm4gwt.appspot.com/examples.html Try it, it's based on jQuery Mobile. -- 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

Re: HTTP Client API for GWT - Requestor (Announcement)

2015-01-07 Thread Slava Pankov
Sounds great! Thank you. On Wednesday, January 7, 2015 12:31:19 PM UTC-8, Danilo Reinert wrote: Finally, a real HTTP Client API is available for the GWT ecosystem: Requestor. It was released today (Jan 7th) under the version 0.1.0 but is being developed for almost a year. The project has

Re: Development Mode will not be supported in Firefox 27+

2015-01-07 Thread Slava Pankov
Just tiny update. Dev mode is still working just fine on Windows with Chromium 38.0.2125.0 (292384) from Dart 1.8.3 distribution. On Monday, February 3, 2014 4:01:41 PM UTC-8, Brian Slesinsky wrote: Mozilla has stopped exporting some C++ symbols that the Firefox plugin relies on [1].

jqm4gwt 1.4.5 released

2014-12-24 Thread Slava Pankov
New version of jqm4gwt 1.4.5 is released. It's advanced wrapper over jQuery Mobile framework. Source: https://github.com/jqm4gwt/jqm4gwt Demo is here: http://jqm4gwt.appspot.com/ -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

Re: add mobile version to existing GWT app?

2014-12-03 Thread Slava Pankov
Ok, but how can you do REST/JSON with a GWT application? For me RestEasy + Errai JAX-RS is working perfectly fine. On Wednesday, December 3, 2014 10:16:23 AM UTC-8, Magnus wrote: Hi! If I'd start the project today, I'd just use plain REST / JSON for both the desktop and mobile versions.

Re: GWT 2.7 and GSS

2014-11-26 Thread Slava Pankov
{ content: CONTENT_HEADER; } On Tue Nov 25 2014 at 11:56:49 PM Slava Pankov pan...@gmail.com javascript: wrote: :-) That's exactly what I did, but it's not working. In Java code I'm getting it exactly as String with value \27a1 (length == 5). On Tuesday, November 25, 2014 1:07:56 PM

Re: GWT 2.7 and GSS

2014-11-26 Thread Slava Pankov
Also I've added comment about unicode symbols higher than U+ to issue#9022 On Wednesday, November 26, 2014 11:54:20 AM UTC-8, Slava Pankov wrote: Thanks, issue is opened: https://code.google.com/p/google-web-toolkit/issues/detail?id=9022 On Wednesday, November 26, 2014 4:37:54 AM UTC

Re: GWT 2.7 and GSS

2014-11-25 Thread Slava Pankov
OK, one of my issues is resolved, so answering to myself :-) For *.gss highlighting in Eclipse see attached screenshot. But still no luck with unicode symbol in @def. On Monday, November 24, 2014 8:50:10 PM UTC-8, Slava Pankov wrote: Another problem: @def CONTENT_HEADER literal(\27A1

Re: GWT dev plugin stopped working on Chrome 39

2014-11-25 Thread Slava Pankov
SuperDevMode debugging is not so convenient as DevMode, but with SDBG https://github.com/sdbg/sdbg it's almost OK for me. Also with new GPE it's very easy to switch between SuperDevMode and DevMode debugging, so I use both of them now. On Tuesday, November 25, 2014 5:49:40 AM UTC-8, jonl

Re: GWT 2.7 and GSS

2014-11-25 Thread Slava Pankov
Slava Pankov pan...@gmail.com javascript: wrote: OK, one of my issues is resolved, so answering to myself :-) For *.gss highlighting in Eclipse see attached screenshot. But still no luck with unicode symbol in @def. On Monday, November 24, 2014 8:50:10 PM UTC-8, Slava Pankov wrote

Re: GWT 2.7 and GSS

2014-11-24 Thread Slava Pankov
What about syntax highlighting for *.gss files in Eclipse? *.css where supported by GPE CSS Resource Editor, but it does NOT support *.gss -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop receiving

Re: GWT 2.7 and GSS

2014-11-24 Thread Slava Pankov
Another problem: @def CONTENT_HEADER literal(\27A1); It was unicode character constant before gss, now I'm getting string literal(\27A1) instead of unicode symbol. On Monday, November 24, 2014 7:26:20 PM UTC-8, Slava Pankov wrote: What about syntax highlighting for *.gss files in Eclipse

Re: Customer specific locales

2014-08-15 Thread Slava Pankov
Yes, you have to. I'm using customer specific locales, and third part is 5-8 chars. On Friday, August 15, 2014 5:25:10 AM UTC-7, Developer wrote: Some of our customers want some special labels for some of our GUI elements. Therefore I would like to define some customer specific locales in

New version 1.4.3 of jqm4gwt is available, check it out.

2014-07-30 Thread Slava Pankov
New version 1.4.3 of jqm4gwt is available. It's extended wrapper over jQuery Mobile. In some sense it's alternative for mgwt, and could be used for Tablet/Mobile development in pure Java. Demos http://jqm4gwt.appspot.com/ and source code https://github.com/jqm4gwt/jqm4gwt -- You received

Re: unable to use external javascript in GWT

2014-07-30 Thread Slava Pankov
public folder should be on the same level as gwt.xml file. superdev mode doesn't allow usage of script in gwt.xml, you have to include it in your application html file (it will be copied from public folder to target). You still can inject your scripts in onModuleLoad() of your library, but it's

Re: Development Mode will not be supported in Firefox 27+

2014-07-14 Thread Slava Pankov
Also on Windows it's still possible to use Chrome 36 with devmode. Download Dart (I'm using 1.5.3 distribution), and use Chromium from there (it's portable, just copy it to any folder). Also you need GWT-Developer-Plugin_v1.0.11357.crx of course, see previous post. On Friday, July 11, 2014

Re: Using GWT for mobile and tablet apps?

2014-07-14 Thread Slava Pankov
I'm using jqm4gwt for mobile development, see https://github.com/jqm4gwt/jqm4gwt It's wrapper over jQuery Mobile, but you can write Java only code of course. This week I'm planning to release new version based on the latest JQM 1.4.3 On Monday, July 14, 2014 7:09:26 AM UTC-7, dhoffer wrote:

Re: GWT distributed builds

2014-07-09 Thread Slava Pankov
Use collapse-all-properties / in your gwt.xml when making development builds. Or use superdev mode. On Wednesday, July 9, 2014 1:56:54 PM UTC-7, Jens wrote: Well, we fully rebuild our application because it's quite big, and is developed more or less actively. So if we have enough resources

Re: Best approach from consuming REST(Jetty) webservice

2014-07-09 Thread Slava Pankov
Or use Errai JAX-RS https://docs.jboss.org/author/display/ERRAI/Errai+JAX-RS On Tuesday, July 8, 2014 7:12:06 AM UTC-7, Thomas Broyer wrote: On Tuesday, July 8, 2014 10:11:11 AM UTC+2, Santhosh Thadaka wrote: I have my backend with EJB and REST webservice and I want to consume the REST

Re: GWT Developer Plugin

2014-07-09 Thread Slava Pankov
Firefox ESR 24.6 has portable version, so you can use it specifically for devmode http://portableapps.com/apps/internet/firefox-portable-esr On Monday, July 7, 2014 9:19:26 AM UTC-7, Rade Martinović wrote: AFAIK is internet slang for As Far As I Know :) -- Rade On Thursday, July 3, 2014

Re: Best server communication

2014-07-09 Thread Slava Pankov
Try Errai JAX-RS, it works perfectly for my development. On Saturday, June 21, 2014 10:50:19 AM UTC-7, mamadou lakhassane cisse wrote: Hi people I'm a newbie in GWT. I've made some apps but still using RPC. I was wondering now if there were a better way than that for server communication.

Re: GWT ways to speedup UI development

2014-05-27 Thread Slava Pankov
code? By the way, how do you handle validation in GWT - not the simple one, but complex, tough scenarios? Making UI in GWT is always a big pain due to time.. W dniu sobota, 24 maja 2014 02:45:29 UTC+2 użytkownik Slava Pankov napisał: For me combination of UiBinder templates and Errai data

Re: GWT ways to speedup UI development

2014-05-23 Thread Slava Pankov
For me combination of UiBinder templates and Errai data bindings works perfectly fine. With UiBinder you can create reusable blocks/frames/components (I cannot find a proper description), i.e. for example FlowPanel with some different widgets can be considered as whole UI block. Then in other

Re: How to access a web page in Frame

2014-04-02 Thread Slava Pankov
used a proxy servlet so the url for Frame is the same origin (same scheme, host, and port) as widget. But Document.getElementsByTagName(div) still returns an empty NodeList. Please help! Leon On Tuesday, April 1, 2014 3:29:43 AM UTC-4, Slava Pankov wrote: Perhaps you have cross domain

Re: Development Mode will not be supported in Firefox 27+

2014-04-02 Thread Slava Pankov
DevMode is working just fine in Firefox 26 (not 24). And probably will work till Firefox ESR becomes 27 (it's only 24.4 now). So there is a time frame for normally working DevMode at least till the end of 2014. I hope SDM will be much better then. What I'm concerned about that GWT team don't

Re: How to access a web page in Frame

2014-04-01 Thread Slava Pankov
Perhaps you have cross domain problem. Is URL in your iframe from the same domain as main application? If not you need something like proxy servlet to simulate you getting data from your server side. On Monday, March 31, 2014 7:23:17 PM UTC-7, Leon wrote:

Is there any chance to fix this issue in upcoming 2.6.1?

2014-03-25 Thread Slava Pankov
I've found nasty bug when using ui:import in UiBinder template. Looks like the solution is very simple/tiny change in UiBinderParser.java, is it possible to include it to upcoming GWT 2.6.1? http://code.google.com/p/google-web-toolkit/issues/detail?id=8641 -- You received this message