uncaught java.lang.indexoutofboundsexception

2015-10-09 Thread NewbieGwtUser
Hello, I have a global view in which I have to display a table that its rows depend on the number of lateral submenu Items called 'subMenuItemsContainer'. I create this method where I just want to show if I get the good item values or not and I call it within the view constructor after the

Re: custom GWT theme in 2.7 missing

2015-10-09 Thread Heinz Rohmer
some more testing: If we inherit one of the GWT default themes (e.g. DarkRTL) within the two main modules and build it with maven the result on our servers look OK. But switching back to our custom theme did not work. I guess our problem is in the setup of the maven plugin. Is there any switch

Re: uncaught java.lang.indexoutofboundsexception

2015-10-09 Thread Frank
replace for(int i=0; i<=nbMenuItems;i++) by for(int i=0; i > Hello, > > I have a global view in which I have to display a table that its rows > depend on the number of lateral submenu Items called >

Re: uncaught java.lang.indexoutofboundsexception

2015-10-09 Thread Alberto Mancini
hi, the '<=' in the loop is at least suspect. A. On Fri, Oct 9, 2015 at 11:39 AM NewbieGwtUser wrote: > this exception is generated by WidgetCollection.java:112 class > > > Le vendredi 9 octobre 2015 11:34:32 UTC+2, NewbieGwtUser a écrit : >> >> Hello, >> >> I have a

Re: uncaught java.lang.indexoutofboundsexception

2015-10-09 Thread NewbieGwtUser
this exception is generated by WidgetCollection.java:112 class Le vendredi 9 octobre 2015 11:34:32 UTC+2, NewbieGwtUser a écrit : > > Hello, > > I have a global view in which I have to display a table that its rows > depend on the number of lateral submenu Items called >

Re: Template Engine?

2015-10-09 Thread Ed
Have a look at gwt errai of redhat. On Wednesday, 7 October 2015 15:47:22 UTC+2, Cristian Rinaldi wrote: > > 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

Re: uncaught java.lang.indexoutofboundsexception

2015-10-09 Thread NewbieGwtUser
have someone any idea please ?? Le vendredi 9 octobre 2015 16:49:40 UTC+2, NewbieGwtUser a écrit : > > I forgot to specify that mosaiqueContainer is a LayoutPanel in my ui.xml > file. > > Le vendredi 9 octobre 2015 16:39:25 UTC+2, NewbieGwtUser a écrit : >> >> I have finally could display my

Re: uncaught java.lang.indexoutofboundsexception

2015-10-09 Thread Jens
> have someone any idea please ?? > With LayoutPanel you need to position your child widgets using any of the setWidgetX methods on LayoutPanel. If you don't want that then don't use LayoutPanel. -- J. -- You received this message because you are subscribed to the Google Groups "GWT

Re: uncaught java.lang.indexoutofboundsexception

2015-10-09 Thread Jens
> Although, I didn't really understand why my items have been moved from > Panel to another while I didn't do a remove, but your reasoning is > absolutly true, so by replacing the code as you asked me to, I got > henceforth all the items displayed in the toast, but I have ususally an > empty

Re: uncaught java.lang.indexoutofboundsexception

2015-10-09 Thread Thomas Broyer
On Friday, October 9, 2015 at 12:32:59 PM UTC+2, NewbieGwtUser wrote: > > I already expected my error and it worked fine by removing the = operator. > > but unfortunately when I wanted to add the real code expected to be run > within the for loop, I have had the same exception, and I also had

Re: uncaught java.lang.indexoutofboundsexception

2015-10-09 Thread NewbieGwtUser
I already expected my error and it worked fine by removing the = operator. but unfortunately when I wanted to add the real code expected to be run within the for loop, I have had the same exception, and I also had only 1 displayed item in 2 (so that if I have 10 items, it display only 5 by

Re: uncaught java.lang.indexoutofboundsexception

2015-10-09 Thread NewbieGwtUser
Hi Thomas! I really appreciated your reactivity of answering me. Although, I didn't really understand why my items have been moved from Panel to another while I didn't do a remove, but your reasoning is absolutly true, so by replacing the code as you asked me to, I got henceforth all the

Re: uncaught java.lang.indexoutofboundsexception

2015-10-09 Thread NewbieGwtUser
I forgot to specify that mosaiqueContainer is a LayoutPanel in my ui.xml file. Le vendredi 9 octobre 2015 16:39:25 UTC+2, NewbieGwtUser a écrit : > > I have finally could display my view, but not as I expected, so that I get > all the rows stacked each one over the other, > have some one an