Dear all, I have a curious problem with my grid component. The grid works fine on firefox and IE desktop, as well as opera and safari moblie. The grid produces only errors on the IEmobile on WM6.5. Thanks in advance! Tooobi
My Grid component is: <t:grid t:source="fahrzeugList" row="fahrzeug" rowsPerPage="3" exclude="IDFahrzeug, tuev, steuern, Gestohlen" empty="Es existiert kein passendes Fahrzeug!"> <t:parameter name="kennzeichenNummerCell"> <t:pagelink id="grid" t:page="ErgebnisDetails" t:context="fahrzeug.kennzeichenNummer">${fahrzeug.kennzeichenNummer}</t:pagelink> </t:parameter> </t:grid> the class fahrzeug: @Entity public class Fahrzeug implements Serializable { @Id @NonVisual private long fIDFahrzeug; private String fKennzeichenNummer; private String fFIN; private String fHersteller; private String fTyp; @ManyToOne(fetch=FetchType.LAZY) private Halter fHalter; private boolean fGestohlen; private boolean fTuev; private boolean fSteuern; ... } An error selection of my error message are: [ERROR] TapestryModule.RequestExceptionHandler Processing of request failed with uncaught exception: Exception in method org.apache.tapestry5.corelib.components.GridPager.onAction(int, java.lang.String) (at GridPager.java:177), parameter #1: Coercion of assets to type java.lang.Integer (via String --> Long, Long --> Integer) failed: For input string: "assets" org.apache.tapestry5.runtime.ComponentEventException: Exception in method org.apache.tapestry5.corelib.components.GridPager.onAction(int, java.lang.String) (at GridPager.java:177), parameter #1: Coercion of assets to type java.lang.Integer (via String --> Long, Long --> Integer) failed: For input string: "assets" [at classpath:org/apache/tapestry5/corelib/components/Grid.tml, line 15, column 28] Caused by: java.lang.IllegalArgumentException: Exception in method org.apache.tapestry5.corelib.components.GridPager.onAction(int, java.lang.String) (at GridPager.java:177), parameter #1: Coercion of assets to type java.lang.Integer (via String --> Long, Long --> Integer) failed: For input string: "assets" Caused by: java.lang.RuntimeException: Coercion of assets to type java.lang.Integer (via String --> Long, Long --> Integer) failed: For input string: "assets" Caused by: java.lang.NumberFormatException: For input string: "assets" -- View this message in context: http://tapestry.1045711.n5.nabble.com/Grid-onAction-Problem-IEM6-tp3339635p3339635.html Sent from the Tapestry - User mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional commands, e-mail: users-h...@tapestry.apache.org