Re: GWT Material - Video tutorial #1

2016-06-13 Thread Cristian Rinaldi
Great work!!! One question, with new version of JsInterop, you have intension of migrate all library to JsInterop, and all UiBinder and Widget, to HTML pure template and native Elements? El viernes, 10 de junio de 2016, 5:00:53 (UTC-3), mark kevin ringor escribió: > > We've just released our

Re: GWT vs AngularJS

2016-02-21 Thread Cristian Rinaldi
+Gilberto, excellent response!! +1 for this! El viernes, 19 de febrero de 2016, 6:08:12 (UTC-3), Kirill Prazdnikov escribió: > > My 2 cents. > We write portable code. > We build it for GWT, iOS, Android. > GWT is a java compiler, a way to have portable logic. > More portable logic, less code

Re: Large no of gwt modules

2016-02-03 Thread Cristian Rinaldi
rn. I would > be curious to see, the performance and the UI experience. > How about the history? Too many changes required for history handling? > > Regards > Rajesh > > On Sunday, January 31, 2016 at 9:26:12 PM UTC+5:30, Cristian Rinaldi wrote: >> >> Rajesh, >

Re: Large no of gwt modules

2016-01-31 Thread Cristian Rinaldi
Rajesh, I implemented a large GWT application using turducken pattern, I do not think that GWT need something specific to dynamically load modules, remember that a GWT app is just a JS file, and can be externally charged by a component that is responsible for this, with the particular logic,

Re: JSInterop sample / tutorial?

2015-11-25 Thread Cristian Rinaldi
You can see this projects: https://github.com/workingflows/gwt-jscore (branch): NewJsInterop have support for new annotations. https://github.com/workingflows/gwt-jquery https://github.com/workingflows/gwt-playground

[gwt-contrib] Re: New JsInterop document

2015-11-09 Thread Cristian Rinaldi
Goktug: Nice Work!! How can we handle constructors of native types that receive parameters? By Example Promise in JS: new Promise(*executor*); new Promise(function(resolve, reject) { ... }); I resolve with a static method and JSNI: public final static native Promise

[gwt-contrib] Re: New JsInterop document

2015-11-09 Thread Cristian Rinaldi
Thanks Julien!!! This work fine!! El viernes, 23 de octubre de 2015, 4:13:55 (UTC-3), Goktug Gokdogan escribió: > > As we are getting close to 2.8 release I wrote a new document that is > concentrating on jsinterop features to be released in 2.8: > >

Re: JsInterop - Collection of native Interfaces

2015-11-09 Thread Cristian Rinaldi
David: Most of the native code(JSNI), I used to object instantiation, now, in this change I eliminated almost all code except some constructors. I changed a lot of the Promise. And I uploaded a test project called gwt-playground . El

[gwt-contrib] Re: GWT as OSGI plug-ins

2015-11-08 Thread Cristian Rinaldi
Hey Ahmad Bawaneh, Currently I'm working on a modular platform based on OSGI on Karaf. We have implemented a pattern "Turducken" with a common EventBus for communication between clients modules. Each module contains a definition that is sent from the server, and through these communication

Re: JsInterop - Collection of native Interfaces

2015-11-08 Thread Cristian Rinaldi
Hello David: I am working on the same thing. Some time ago, I went to GitHub project, and now I have given support to the last update of annotations. I think that all these projects have the end what will Elemental 2.0, but for now, are the

JsInterop compile error

2015-11-07 Thread Cristian Rinaldi
Hello community: I'm using GWT 2.8-SNAPSHOT and new annotations JsInterop. I have a very simple class, but gives the error in compilation time. @JsType(isNative = true, name = "Object", namespace = JsPackage.GLOBAL) public class JsObject { public static native List

Template Engine?

2015-10-07 Thread Cristian Rinaldi
Hello: Were there any plans on working with templates (not UiBinder), templates related how angular or aurelia work. I think it would be desirable to have such a project, because it is closer to how it works naturally with HTML today, too, I believe that using JsInterop would not be difficult

[gwt-contrib] JsInterop Function Callback

2015-09-25 Thread Cristian Rinaldi
Hey: I'm using JsInterop to map some JS APIs. What is the best way to map a callback to receive multiple parameters? For example, a jQuery click handler: function (event, params) In Java could be: Function fn = new Function() { @Override public Object call(Event event, Object...

JsInterop callback function with parameters

2015-09-24 Thread Cristian Rinaldi
Hey: I'm using JsInterop to map some JS APIs. What is the best way to map a callback to receive multiple parameters? For example, a jQuery click handler: function (event, params) Java could be: Function (Event, Object []), but then is complicated to manipulate the "Object []", there is

Re: Magical "js" function

2015-09-17 Thread Cristian Rinaldi
It is not implemented yet, I have not seen in the master branch. Cristian., El jueves, 17 de septiembre de 2015, 17:22:36 (UTC-3), Laser Jim escribió: > > Hey, > > I'm LOVING js interop. I actually abandoned GWT a couple years ago in > favor of another architecture, but with jsinterop, I'm

[gwt-contrib] Re: Introducing "native" JsTypes

2015-09-12 Thread Cristian Rinaldi
The modification is in the master or not yet? El miércoles, 9 de septiembre de 2015, 23:05:46 (UTC-3), Goktug Gokdogan escribió: > > If you have followed some jsinterop discussions earlier [1], we decided to > drop Prototype class generation in favor of concrete classes with native > methods:

[gwt-contrib] Re: Introducing "native" JsTypes

2015-09-12 Thread Cristian Rinaldi
This code: @JsType(isNative=true) public class Object { public static native String[] keys(Object obj); public native boolean hasOwnProperty(String prop); } It is the code generated by the compiler? If yes, what is the source code, I ask, by the definition of static methods on

Re: JSInterop sample / tutorial?

2015-06-08 Thread Cristian Rinaldi
Estimated I have the outdated projects these days will change the versions and write a tutorial. El martes, 27 de enero de 2015, 18:30:55 (UTC-3), marian lux escribió: Is there a working JSInterop sample (e.g. project on github) online or an article how to get started? It is part of the

Re: webidl, jsinterop and overloaded methods

2014-12-16 Thread Cristian Rinaldi
rhmoller: You can see in this thread https://groups.google.com/forum/?hl=es-419#!searchin/google-web-toolkit-contributors/jsinterop/google-web-toolkit-contributors/DViFpz26_9Y/0BxTNzg9o_IJa discussion of method overloading, and the proposed support for next release of GWT. El viernes, 12 de

[gwt-contrib] Re: JSInterop assign a function/callback to a property

2014-11-06 Thread Cristian Rinaldi
; } })); The code here: - https://github.com/workingflows/gwt-jscore.git - https://github.com/workingflows/gwt-jquery.git - https://github.com/workingflows/gwt-playground.git Cheers!! El jueves, 6 de noviembre de 2014 04:46:08 UTC-3, Kay-Uwe Janssen escribió: @Cristian Rinaldi

Re: [gwt-contrib] JSInterop assign a function/callback to a property

2014-11-05 Thread Cristian Rinaldi
@kay-uwe what Ray says is: @JsType public interface Receiver { void onReady(Function onReadyFn); public static class Static { public static native Receiver create() /*-{ return //TODO return Receiver!!! }-*/; } } .. @JsType public interface Function {

Re: [gwt-contrib] JsInterop retrofit

2014-11-05 Thread Cristian Rinaldi
@goktug I like this option, it is expressive and concise. But I have a question, The code generated for the prototype, suppose we are extending some existing JS functionality and want to add some function, the prototype generated will have native code?, how this prototype generates subyasente

Re: [gwt-contrib] JsInterop retrofit

2014-11-05 Thread Cristian Rinaldi
AM, Cristian Rinaldi csri...@gmail.com javascript: wrote: @goktug I like this option, it is expressive and concise. But I have a question, The code generated for the prototype, suppose we are extending some existing JS functionality and want to add some function, the prototype generated

Re: Insights on GWT Usage

2014-11-04 Thread Cristian Rinaldi
Nice @Joseph Lust!!! Thanks for sharing El martes, 4 de noviembre de 2014 21:17:55 UTC-3, David escribió: Nice information. So I can use it to advice my boss to choose GWT for next big project. On Wednesday, November 5, 2014 12:36:14 AM UTC+8, Joseph Lust wrote: I thought that Ray's

Re: [gwt-contrib] JSInterop handle JavaScript get/set function with the same name

2014-11-04 Thread Cristian Rinaldi
@Goktug: This news is great !!! The issue of the overload was something he had already asked in another thread, it's good to read that will be supported. Thank you ... El martes, 4 de noviembre de 2014 08:40:15 UTC-3, Joost Gustavson escribió: +1 same here. Hope this get solved in GWT

Re: [gwt-contrib] JSInterop handle JavaScript get/set function with the same name

2014-11-04 Thread Cristian Rinaldi
. November 2014 13:56:46 UTC+1 schrieb Cristian Rinaldi: @Goktug: This news is great !!! The issue of the overload was something he had already asked in another thread, it's good to read that will be supported. Thank you ... El martes, 4 de noviembre de 2014 08:40:15 UTC-3, Joost Gustavson

Re: [gwt-contrib] JSInterop handle JavaScript get/set function with the same name

2014-11-04 Thread Cristian Rinaldi
, I meant next major release (2.8 or 3.0). On Tue, Nov 4, 2014 at 8:04 AM, Cristian Rinaldi csri...@gmail.com javascript: wrote: @confile @goktug said However we don't have an ETA for this and 2.7 is already at RC1 so you need to wait for the next release. This may mean: 1) wait

Re: [gwt-contrib] JSInterop handle JavaScript get/set function with the same name

2014-11-04 Thread Cristian Rinaldi
Thanks @Jens!! El martes, 4 de noviembre de 2014 19:17:58 UTC-3, Jens escribió: @goktug I saw in the repositories, there GWT 2.8.0-SNAPSHOT, what does it mean? It is there where we find changes support java 8 and other changes that have to do with jsInterop? 2.8.0-SNAPSHOT is the daily

[gwt-contrib] Re: GWT 2.7 JsInterop Handle static JavaScript Functions

2014-10-31 Thread Cristian Rinaldi
1) gwt-jscore is a small Implementation of DOM Element and JS functionality standard, this is a test, This project will not be Necessary When is Implemented Elements 2.0, but for the moment I need this. Many things about this project can change as conforming JsInterop. For example: The

[gwt-contrib] Re: GWT 2.7 JsInterop Handle static JavaScript Functions

2014-10-30 Thread Cristian Rinaldi
I have been testing JsInterop for a while, and is very promising ... The issue of static functions is something I have asked, and we have to wait Java support 8 and the new JSNI too. @confile, if you want to look at a couple of projects on which I am working: - gwt-jscore

Re: master/3.0.0 js interop ready to play with?

2014-10-04 Thread Cristian Rinaldi
for now? Cheers, James On Monday, August 11, 2014 7:17:32 PM UTC+1, Cristian Rinaldi wrote: I was playing with JsInterop and perform several examples DataTables Plugin of JQuery (import) Polymer (Path Observer, Object Observer), etc... Here my exmaples: https://github.com

Re: [gwt-contrib] GWT 2.7 JsInterop Handle static JavaScript Functions

2014-10-04 Thread Cristian Rinaldi
+Ray Cromwell: Suppose the following definition: @JsType(prototype = jQuery) public interface JQueryElement { JQueryElement append(JQueryElement element); @JsProperty JQueryElement html(); void data(String key, String value); Object val(); void on(String

Re: [gwt-contrib] GWT 2.7 JsInterop Handle static JavaScript Functions

2014-10-04 Thread Cristian Rinaldi
+Ray Cromwell: Suppose the following definition: @JsType(prototype = jQuery) public interface JQueryElement { JQueryElement append(JQueryElement element); @JsProperty JQueryElement html(); void data(String key, String value); Object val(); void on(String

[gwt-contrib] Re: GWT 2.7 release plan

2014-10-01 Thread Cristian Rinaldi
- JsInterop Preview is part of the release? El miércoles, 1 de octubre de 2014 16:15:26 UTC-3, Daniel Kurka escribió: Hi all, we just settled on a GWT 2.7 release plan: - We *code freeze* on *October 7th* and branch for GWT 2.7. - As soon as we have the *remaining patches submitted*, we

Re: [gwt-contrib] JsInterop Advance

2014-08-22 Thread Cristian Rinaldi
jueves, 21 de agosto de 2014 13:33:38 UTC-3, Goktug Gokdogan escribió: On Thu, Aug 21, 2014 at 5:29 AM, Cristian Rinaldi csri...@gmail.com javascript: wrote: Thanks +Goktug Gokdogan for response. APT is very good option and java 8 support for GWT 3.0 would be a amazing thing. You have

Re: [gwt-contrib] JsInterop Advance

2014-08-21 Thread Cristian Rinaldi
escribió: On Wed, Aug 20, 2014 at 6:17 AM, Cristian Rinaldi csri...@gmail.com javascript: wrote: Community: I'm playing with JsInterop , and I have two questions: 1) Are you planning to try the static methods of JS objects, such as Object, Promise, etc

JsInterop advance?

2014-08-20 Thread Cristian Rinaldi
Community: I'm playing with JsInterop , and I have two questions: 1) Are you planning to try the static methods of JS objects, such as Object, Promise, etc.? 2) How do when an instance is mapped to an existing Object, eg Promise, has a constructor with parameters?

Re: JsInterop advance?

2014-08-20 Thread Cristian Rinaldi
Hello Jens: I have just searched in GWT test and code, and talks of +Goktug Gokdogan in GWT.create event. El miércoles, 20 de agosto de 2014 11:52:52 UTC-3, Jens escribió: Interesting. I also have a promise library that maps to ES6 native promises but I am still using normal JSNI to do so.

[gwt-contrib] JsInterop Advance

2014-08-20 Thread Cristian Rinaldi
Community: I'm playing with JsInterop , and I have two questions: 1) Are you planning to try the static methods of JS objects, such as Object, Promise, etc.? 2) How do when an instance is mapped to an existing Object, eg Promise, has a constructor with parameters?

Re: master/3.0.0 js interop ready to play with?

2014-08-13 Thread Cristian Rinaldi
The GWT maven plugin version 2.6.1 does not support JsInterop, so I made a fork of the project and gave support, default is JS. If you want to change, set jsInteropMode NONE | JS | CLOSURE / jsInteropMode https://github.com/csrinaldi/gwt-maven-plugin El martes, 12 de agosto de 2014 17:23:00

Re: master/3.0.0 js interop ready to play with?

2014-08-11 Thread Cristian Rinaldi
I was playing with JsInterop and perform several examples DataTables Plugin of JQuery (import) Polymer (Path Observer, Object Observer), etc... Here my exmaples: https://github.com/csrinaldi/samples-of-gwt/tree/master/gwt-playground But I 2 question about JsInterop: The first

Re: Can we use multiple mvp using single Entry point.

2014-08-07 Thread Cristian Rinaldi
This is not correct, commonDisplay is a container. The last mapper to resolve the activity will overwrite the container by inserting their view. If you want two areas, it is the fact of wanting to respond to the same state (place) with different behavioral alternatives (Presenter /View). El

Re: GWT JS Interopt

2014-07-23 Thread Cristian Rinaldi
://realtimeplayground.goodow.com/bus.html and the generated js library https://github.com/goodow/bower-realtime-channel. What does the trick is: https://github.com/goodow/realtime-channel/blob/master/src/main/java/com/goodow/realtime/html/HtmlScheduler.java#L46-L52 On Wed, Jul 23, 2014 at 10:28 AM, Cristian

JsInterop and EventListener

2014-07-23 Thread Cristian Rinaldi
I'm doing tests with JsInterop (JsType, JsExport, etc), and I encounter a problem when adding a listener. Part of my code: @JsType(prototype = HTMLElement) public interface HTMLElement extends Element { public void setAttribute(String align, String center); public void

Re: JsInterop and EventListener

2014-07-23 Thread Cristian Rinaldi
); } })); . body.appendChild(button); } The all code in my Github: https://github.com/csrinaldi/samples-of-gwt/tree/master/gwt-playground Thanks!!! El miércoles, 23 de julio de 2014 10:54:42 UTC-3, Cristian Rinaldi escribió: I'm doing tests with JsInterop (JsType, JsExport, etc

Re: GWT JS Interopt

2014-07-22 Thread Cristian Rinaldi
I have the same problem with addEventListener, the generated code is not exactly as you mention: This is my code: public interface EventListenerE extends JsObject { void onEvent(E event); } @JsType(prototype = HTMLElement) public interface HTMLElement extends Element {

[gwt-contrib] Re: elemental templates

2013-11-28 Thread Cristian Rinaldi
Goktug: I am motivated to learn the proposed of WebComponent integration. It would be great to base everything on Elemental, but I do not know the progress of Elemental at this time. (It has support for FF, Opera and IE)? The important thing is to have a template system, with power of UiBinder

Re: Anyone work on the AOP for the GWT before?

2013-01-22 Thread Cristian Rinaldi
You can see Errai projects that implements aop. e.g: @Remote public interface CustomerService { * @InterceptedCall(MyCacheInterceptor.class)* public Customer retrieveCustomerById(long id); } Greetings *AUS. Cristian Rinaldi Co-founder* Mobile: (+54) 9 (342) 5 238 083 Email: cristian.rina

Re: MVP with multiple EntryPoints

2012-11-12 Thread Cristian Rinaldi
Joseph, thanks a lot for your predisposition Another question but no less important: You are using injection of dependency in the projects, e.g: peaberry with Guice or Weld? Greetings!! -Cristian El jueves, 8 de noviembre de 2012 22:53:39 UTC-3, Joseph Lust escribió: Christian, Sorry

Re: MVP with multiple EntryPoints

2012-11-08 Thread Cristian Rinaldi
Hi Joseph: Thanks a lot, it was an interesting answer. Beyond GWT, I'm courious about how are you managing dinamyc ORM extensions, i.e. if you are using JPA, how are you merging domain classes from several OSGi bundles. Best regards. - Cristian El miércoles, 12 de septiembre de 2012 15:30:37

Re: Indexed DB support

2012-09-20 Thread Cristian Rinaldi
1) I am using IndexedDB with Elemental API, but is implemented the old specification of IndexedDB and I can't find the way to assign the version, therefore, the VersionChange is never launched. 2) Try updating WebCore with all IDL, but when running the build script, the parser, throws the

Re: MVP with multiple EntryPoints

2012-09-12 Thread Cristian Rinaldi
| | |-- | | | C2 | | --- What is the right approach to solve this kind of application? Thanks in advance. - Cristian Rinaldi - Andres Testi El miércoles, 12 de septiembre de 2012 05:49:41 UTC-3, Thomas Broyer escribió

Re: MVP with multiple EntryPoints

2012-09-12 Thread Cristian Rinaldi
Andrei, thanks for response. In our architecture we have a MainModule that manages all aspects from Layout visualization, e.g. to request for maximization in the central region, or to request for display another region in the general layout. Also defines common places that are used by other

MVP with multiple EntryPoints

2012-09-11 Thread Cristian Rinaldi
We have an application with multiple EntryPoints. Each EntryPoint contains an MVP configuration with their own PlaceHistoryHandler, PlaceHistoryMapper and PlaceController. Depending on the order that the history handlers were configured, the place treatment is overlapped. I think the problem is

Parsing error after update WebCore Elemental

2012-08-28 Thread Cristian Rinaldi
I updated WebCore (third_party) from de Dart Project and when run build script the following error occurs: Traceback (most recent call last): File ./scripts/elemental_fremontcutbuilder.py, line 217, in module sys.exit(main()) File ./scripts/elemental_fremontcutbuilder.py, line 214, in

Re: where is Elemental package?

2012-08-14 Thread Cristian Rinaldi
-rc1 gwt. Any ideas? A.U.S Cristian Rinaldi Logikas - Conectando Ideas www.logikas.com 2012/8/14 gong min gongmin...@gmail.com ah!yes. I found it now. Thanks. 2012/8/13 Thomas Broyer t.bro...@gmail.com In the gwt-elemental.jar that comes with the GWT SDK (or the gwt-elemental Maven

RequestFacory Validation issues

2012-08-08 Thread Cristian Rinaldi
Validation in the RequestFactory API is done only over Default group, and it is performed at the RF ServiceLayer level. It is not possible to map ConstraintViolationExceptions raised at the application level. I have been analysing the SimpleRequestProcessor.process() method and I have concluded

Re: GWT Elemental Problem with Listner

2012-08-02 Thread Cristian Rinaldi
is in version 2.5-rc1 gwt. Any ideas? *AUS. Cristian Rinaldi Co-founder* Mobile: (+54) 9 (342) 5 238 083 Email: cristian.rina...@logikas.com Skype: csrinaldi Site: www.logikas.com Google Plus https://plus.google.com/u/0/ Logikas +Page https://plus.google.com/u/0/b/114838406697164582224

Re: RequestFactory

2012-07-23 Thread Cristian Rinaldi
A good way to start is: https://developers.google.com/web-toolkit/doc/latest/DevGuideRequestFactory *AUS. Cristian Rinaldi Co-founder* Mobile: (+54) 9 (342) 5 238 083 Email: cristian.rina...@logikas.com Skype: csrinaldi Site: www.logikas.com Google Plus https://plus.google.com/u/0/ Logikas

Widget with Elemental support

2012-07-03 Thread Cristian Rinaldi
I understand that Elemental is esperimental, but is robust and really is an excellent frame. My question is: In the future, Widgets are written using Elemental? Is it planned? Thakns -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

Re: GWT 2.5 RC1 Is Here!

2012-06-28 Thread Cristian Rinaldi
The plugin is here http://dl.google.com/eclipse/plugin/4.2 it is not yet on page. Thanks GWT Team! *AUS. Cristian Rinaldi Co-founder* Mobile: (+54) 9 (342) 5 238 083 Email: cristian.rina...@logikas.com Skype: csrinaldi Site: www.logikas.com Google Plus https://plus.google.com/u/0

Re: UiBinder as Cell widget

2012-06-13 Thread Cristian Rinaldi
(com.google.gwt.cell.client.Cell.Context arg0, EntityBaseProxy arg1, SafeHtmlBuilder sb) { renderer.render(sb, arg1.getName()); } } Any Idea? A.U.S Cristian Rinaldi Logikas - Conectando Ideas www.logikas.com 2012/6/12 Rodrigo Chandia rchan...@google.com UiBinder does not handle Cell widget events

Re: UiBinder as Cell widget

2012-06-13 Thread Cristian Rinaldi
I updated my local copy, I compiled and it worked! It's weird because I had done, something must have been wrong. A.U.S Cristian Rinaldi Logikas - Conectando Ideas www.logikas.com 2012/6/13 Thomas Broyer t.bro...@gmail.com On Wednesday, June 13, 2012 2:53:50 PM UTC+2, Cristian Rinaldi

Re: GWT UI Layout

2012-06-12 Thread Cristian Rinaldi
, NORTH_HEIGHT, PX); mainLayout.setWidgetLeftWidth (navigation, 0, TCP 100, TCP); mainLayout.setWidgetTopHeight (navigation, NORTH_HEIGHT, PX 38, PX); ... ... mainLayout.animate (500); } You are responsible for positioning the internal widget or panels. A.U.S Cristian Rinaldi 2012/6/12 Santosh

Re: Call for action: Time to rethink a road-map and more frequent updates for GWT.

2012-04-22 Thread Cristian Rinaldi
I honestly do not think that GWT is dying. The community is very large, and we need answers, especially for new projects!!! For all this, Ray thank you very much for the comments, have given us an interesting perspective, we look forward to news good! A.U.S Cristian Rinaldi Teléfono Móvil: (0342

Re: RequestFactory and query by example with a Proxy

2012-02-22 Thread Cristian Rinaldi
Cristian Rinaldi Teléfono Móvil: (0342) 155 238 083 www.logikas.com Lisandro de la Torre 2643 Of 5 - 3000 - Santa Fe Teléfono Fijo: (0342) 483 5138 2012/2/18 Brandon Donnelson branflake2...@gmail.com Do you use a ValueProxy? like: @ProxyFor(PeopleJdoFilter.class) public interface

RequestFactory and query by example with a Proxy

2012-02-17 Thread Cristian Rinaldi
I am developing a filter to search for an entity. The filter creates a proxy for the entity to seek, and then use this proxy with RequestFactory. The problem is that the entity being validated do not know why. The request is: *Request List EntityBaseProxy findByProxy (EntityBaseProxy proxy);*

Place change dynamically

2012-01-29 Thread Cristian Rinaldi
I have a place that change dynamically but these changes are not reflected in the URL. In the activity, a place with information is launched, but the mapper (CachingActivityMapper) needs to put other information, then I tried this code in the Mapper: this.eventBus.addHandler(

Re: Editors with 2 forms

2012-01-26 Thread Cristian Rinaldi
I explain more my previous question, I have a EntityBaseView and your UiBinder EntityBaseWidget implementation. Your presenter is one Activity called EntityBaseActivity and exist one proxy called EntityBaseproxy where show the few methods: EntityBaseproxy

Re: Editors with 2 forms

2012-01-26 Thread Cristian Rinaldi
Any idea over the problem?, all examples that I view, the sub-editors are just Widgets *without one Activity*, and the principal widget is also a Editor that is managed by your Activity or Presenter. My principal problem is that my two Widgets are managed by your Activities, but the Widgets

Editors with 2 forms

2012-01-25 Thread Cristian Rinaldi
I have a registration form for a person with addresses, but the directions will open in another form. For each form I have an associated activity. When I load an address (FormB), I need the person (FormA). And in the form of the person, I need to go carrying the list of addresses. As a link with

Re: Editor Frame work and MVP

2012-01-20 Thread Cristian Rinaldi
. The presenter updates the model and handles the view state only if the logic is complex and it cannot be expressed declaratively. You can see this: http://martinfowler.com/eaaDev/uiArchs.html Regars!!! A.U.S Cristian Rinaldi Teléfono Móvil: (0342) 155 238 083 www.logikas.com Lisandro de la Torre 2643

Re: Hyperlink with PlaceHistoryMapper

2012-01-16 Thread Cristian Rinaldi
Thanks thomas!!! But as an internal navigation menu, I think it is best to use Hyperlink. A.U.S Cristian Rinaldi Teléfono Móvil: (0342) 155 238 083 www.logikas.com Lisandro de la Torre 2643 Of 5 - 3000 - Santa Fe Teléfono Fijo: (0342) 483 5138 2012/1/14 Thomas Broyer t.bro...@gmail.com

LayoutPanel and Custom Widget

2012-01-16 Thread Cristian Rinaldi
I am the following doubt: I made a custom widget that use a LayoutPanel as container of elements: private Element root = Document.get().createDivElement(); private LayoutPanel layoutBody = new LayoutPanel(); private VerticalPanel body = new VerticalPanel(); public

Re: Hyperlink with PlaceHistoryMapper

2012-01-16 Thread Cristian Rinaldi
Thanks Thomas. Of course you're right with the theme of myStop, thanks for the clarification. A.U.S Cristian Rinaldi Teléfono Móvil: (0342) 155 238 083 www.logikas.com Lisandro de la Torre 2643 Of 5 - 3000 - Santa Fe Teléfono Fijo: (0342) 483 5138 2012/1/16 Thomas Broyer t.bro

Re: LayoutPanel and Custom Widget

2012-01-16 Thread Cristian Rinaldi
); header.setWidgetTopHeight(imgDown, 0, PX, 30, PX); collapsed = !collapsed; collapseBody(collapsed); } }, ClickEvent.getType()); But entire the widget treats the event. Any idea? A.U.S Cristian Rinaldi Teléfono Móvil: (0342) 155 238 083 www.logikas.com

Re: Activities and Place design wizard

2012-01-13 Thread Cristian Rinaldi
David: thanks for replying, when I have the solution, the comment in the forum. A.U.S Cristian Rinaldi Teléfono Móvil: (0342) 155 238 083 www.logikas.com Lisandro de la Torre 2643 Of 5 - 3000 - Santa Fe Teléfono Fijo: (0342) 483 5138 2012/1/12 David levy...@gmail.com I'm not sure

Hyperlink with PlaceHistoryMapper

2012-01-13 Thread Cristian Rinaldi
I have a problem with Hyperlink, this code is part of my View: *g:Hyperlink ui:field = newTaskLink targetHistoryToken='newTask'New Task/g:Hyperlink* When I made a click over link, the URL change to: http://127.0.0.1:/main.html?gwt.codesvr=127.0.0.1:9997*#newTask* But PlaceHistoryMapper

Re: Hyperlink with PlaceHistoryMapper

2012-01-13 Thread Cristian Rinaldi
Jim thank you very much!! When you are immersed in many lines of code ignores things simple. Regards. A.U.S Cristian Rinaldi Teléfono Móvil: (0342) 155 238 083 www.logikas.com Lisandro de la Torre 2643 Of 5 - 3000 - Santa Fe Teléfono Fijo: (0342) 483 5138 2012/1/13 Jens jens.nehlme

Re: Activities and Place design wizard

2012-01-12 Thread Cristian Rinaldi
I need maintain the state between stages of wizard, therefore i need caching the Activity. I read over CachingActivityMapper, I just wanted to know if it was the appropriate solution. Thanks for reply A.U.S Cristian Rinaldi Teléfono Móvil: +54 9342 5238083 www.logikas.com Teléfono Fijo: +54

Re: MVP understanding with Editor Framework

2012-01-12 Thread Cristian Rinaldi
Hello: By example: if you work with RequestFactory the model in MVP means a proxy, ie the DTO to be transmitted from the client to the server according to your entities in the model. This proxy is mapped to the properties view. (binding). Regards.!! A.U.S Cristian Rinaldi Teléfono Móvil

Re: MVP understanding with Editor Framework

2012-01-12 Thread Cristian Rinaldi
. You can see this: http://martinfowler.com/eaaDev/uiArchs.html Regars!!! A.U.S Cristian Rinaldi Teléfono Móvil: (0342) 155 238 083 www.logikas.com Lisandro de la Torre 2643 Of 5 - 3000 - Santa Fe Teléfono Fijo: (0342) 483 5138 2012/1/12 Cristian Rinaldi cristian.rina...@logikas.com

Re: AsyncProxy and ActivityMapper

2012-01-12 Thread Cristian Rinaldi
Hello: Maybe my question sounds silly, but what is the need to use AsyncProvider or runAsync in the Activity, if heavier is the view and we can use AsyncProvider in the start method of the activity to get the view? Regards. A.U.S Cristian Rinaldi Teléfono Móvil: (0342) 155 238 083

Re: Activities and Place design wizard

2012-01-11 Thread Cristian Rinaldi
Any idea for this problems? A.U.S Cristian Rinaldi Teléfono Móvil: (0342) 155 238 083 www.logikas.com Lisandro de la Torre 2643 Of 5 - 3000 - Santa Fe Teléfono Fijo: (0342) 483 5138 2012/1/10 Cristian Rinaldi csrina...@gmail.com Hello: I have a question about the design using

Activities and Place design wizard

2012-01-10 Thread Cristian Rinaldi
Hello: I have a question about the design using Activities and Places. I have a set of activities that render their views in a section. The behavior I want is that each activity, after an event (by example: click in next button, click in activity represented in breadcrumbs) go to the next

Re: Editor not flush values of subeditors

2011-10-27 Thread Cristian Rinaldi
The error is when I declare an interface instead of a particular class implementation. By example: @UiField(provided = true) AddressView address; //Interface (not a concrete class) Note that into file ui.xml the inclusion of widget also is a interface by example: l:AddressView

Re: Editor not flush values of subeditors

2011-10-27 Thread Cristian Rinaldi
Hello Christian: AddressView extends View and EditorAddressProxy See below: public interface AddressView extends View, EditorAddressProxy{ public interface Presenter extends MutablePresenterAddressView{ } } -- You received this message because you are subscribed to the Google Groups

Re: Editor not flush values of subeditors

2011-10-27 Thread Cristian Rinaldi
Thanks thomas, I see it clearly now. It's a shame, I wanted the container interface does not depend on the particular implementation of Address. If this changes, I just wanted to change the bind in GIN. Thanks.! -- You received this message because you are subscribed to the Google

Re: Editor not flush values of subeditors

2011-10-26 Thread Cristian Rinaldi
puede ser null}]} About other question, tanks for sugestion. Regards A.U.S Cristian Rinaldi Teléfono Móvil: (0342) 155 238 083 www.logikas.com Lisandro de la Torre 2643 Of 5 - 3000 - Santa Fe Teléfono Fijo: (0342) 483 5138 2011/10/26 Thomas Broyer t.bro...@gmail.com On Tuesday

Re: Editor not flush values of subeditors

2011-10-26 Thread Cristian Rinaldi
)).to(TerceroNewEditorPresenter.class); * * bind(AddressView.Presenter.class).annotatedWith(Names.named(Constans.AddressNewPresenter)).to(AddressNewPresenter.class); * } } A.U.S Cristian Rinaldi Teléfono Móvil: (0342) 155 238 083 www.logikas.com Lisandro de la Torre 2643 Of 5 - 3000 - Santa Fe Teléfono Fijo: (0342

Editor not flush values of subeditors

2011-10-25 Thread Cristian Rinaldi
that correspond to *Tercero (name and lastName). * Attached files to see and guide me in the error. Thank you very much and sorry for my English. A.U.S Cristian Rinaldi Teléfono Móvil: (0342) 155 238 083 www.logikas.com Lisandro de la Torre 2643 Of 5 - 3000 - Santa Fe Teléfono Fijo: (0342) 483 5138

Re: Nested Editor creation question

2011-10-25 Thread Cristian Rinaldi
Hello: Suppose you have a UserView interface, then you can use the interface instead of the concrete class. class UserEditor ... { .. .. UiField (provided = true) UserView view @ Inject UserEditor (UserView v) { this.view = v; UiBinder initialization }

Re: Editor not flush values of subeditors

2011-10-25 Thread Cristian Rinaldi
is necesary one Activity. All this is fine or I've gone crazy? Sorry for my english. A.U.S Cristian Rinaldi Teléfono Móvil: (0342) 155 238 083 www.logikas.com Lisandro de la Torre 2643 Of 5 - 3000 - Santa Fe Teléfono Fijo: (0342) 483 5138 2011/10/25 Thomas Broyer t.bro...@gmail.com

java.lang.NoClassDefFoundError:org/json/JSONException

2011-09-16 Thread Cristian Rinaldi
I have an error when the application is deployed. The exception is Caused by: java.lang.NoClassDefFoundError: org/json/ JSONException. But the rare is that I have all libraries in de WEB- INF/lib gwt-servlet.jar gwt-servlet-deps.jar requestfactory-servlet.jar validation-api-1.0.0.GA.jar I'm not

Re: multi pages in gwt

2011-08-29 Thread Cristian Rinaldi
What is the reason to have multiple pages? (HTML Pages) Ajax applications respond to the pattern Sinlge Page. You can manage the content to be displayed using MVP (Place / Activities). A.U.S Cristian Rinaldi 2011/8/29 Marko Borges markoborge...@gmail.com By the way I am trying to work

Re: Education Gwt??

2011-08-08 Thread Cristian Rinaldi
We invite you to visit our website and see the topics of our advanced course on GWT. www.logikas.com/?page=3subpage=2 Best regards On 5 ago, 07:23, swedeveloper swedevelo...@yahoo.se wrote: Hello my name is jens! I am a novice in these areas, I have been doing quite a bit with web design and