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

2014-10-11 Thread Anoob C I
Hai Jens, Is there a way to display two/more views at the same time in the same container? If so, can you suggest me solutions? On Thursday, August 7, 2014 7:56:25 PM UTC+5:30, Jens wrote: ActivityManager module1ActivityManager = new

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

2014-10-11 Thread Jens
Is there a way to display two/more views at the same time in the same container? Sure, as long as you want to manage all these views in the same activity. In that case just put your views into a FlowPanel and then add that FlowPanel into the activity's display area. -- J. --

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

2014-08-07 Thread V.B.
This may or may not be relevant for your particular use-case, but have a look at slotted https://code.google.com/p/slotted/. For us, it picks up where Activities and Places leaves off. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

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

2014-08-07 Thread Jens
ActivityManager module1ActivityManager = new ActivityManager(1stModuleActivityMapper, eventBus);module1ActivityManager.setDisplay(commonDisplay); ActivityManager module2ActivityManager1 = new ActivityManager(2ndModuleActivityMapper, eventBus); module2ActivityManager1

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

2014-08-07 Thread Cristian Rinaldi
: Can we use multiple mvp using single Entry point.(multiple activity mapper and multiple activity manager for single Entry point.) -- 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

Can we use multiple mvp using single Entry point.

2014-08-06 Thread Naveen
Can we use multiple mvp using single Entry point.(multiple activity mapper and multiple activity manager for single Entry point.) -- 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

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

2014-08-06 Thread Jens
Sure. It is great for defining multiple display areas in your app. Take a read: http://blog.ltgt.net/gwt-21-activities-nesting-yagni/ -- J. -- 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: Can we use multiple mvp using single Entry point.

2014-08-06 Thread Naveen
(commonDisplay); ActivityManager module2ActivityManager1 = new ActivityManager(2ndModuleActivityMapper, eventBus); module2ActivityManager1 .setDisplay(commonDisplay); On Wednesday, August 6, 2014 11:58:38 AM UTC+5:30, Naveen wrote: Can we use multiple mvp using single Entry point.(multiple activity mapper