You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I had an application that uses gmaps4jsf 1.1.3. In this application I create
the markers from backing bean and add it on the map like this:
map.getChildren().add(newMark); and on each marker I added a
HTMLInformationWindow like this:
newMark.getChildren().add(inf);
After changing to gmaps4jsf 1.1.4 and after changing import from
com.googlecode.gmaps4jsf.component.htmlInformationWindow.HTMLInformationWindow
to com.googlecode.gmaps4jsf.component.window.HTMLInformationWindow
I got the folowing error:
java.lang.NoSuchMethodError:
com.googlecode.gmaps4jsf.util.ComponentUtils.pad(Ljavax/faces/component/UICompon
ent;)Ljava/lang/String;
at com.googlecode.gmaps4jsf.component.window.HTMLInfoWindowRenderer.encodeBegin(HTMLInfoWindowRenderer.java:40)
at javax.faces.component.UIComponentBase.encodeBegin(UIComponentBase.java:813)
at javax.faces.component.UIComponent.encodeAll(UIComponent.java:934)
at javax.faces.render.Renderer.encodeChildren(Renderer.java:148)
If I remove line:
newMark.getChildren().add(inf);
Then the application works but the InfWindow is not displayed. Using gmaps4jsf 1.1.3 EVerything worked.
Am I doing something wrong? Or is this a bug?
Regards Corneliu
Original issue reported on code.google.com by [email protected] on 10 Mar 2011 at 7:27
Original issue reported on code.google.com by
[email protected]
on 10 Mar 2011 at 7:27The text was updated successfully, but these errors were encountered: