Re: [Wicket-user] MarkupException using a fragment with a TabbedPanel

2007-07-03 Thread Huergo Perez
ava:1176) at org.apache.wicket.RequestCycle.request(RequestCycle.java:499) at org.apache.wicket.protocol.http.WicketFilter.doGet(WicketFilter.java:257) at org.apache.wicket.protocol.http.WicketServlet.doGet(WicketServlet.java:126) Huergo Perez wrote: I am migrating my application from 1.2.6 to 1.

[Wicket-user] OpenSessionInViewFilter and Wicket Resources

2007-06-28 Thread Huergo Perez
Hi All, I am using Wicket with Spring's OpenSessionInViewFilter for Hibernate. The filter is mapped to Wicket servlet. The problem with this setup is that the OpenSessionInView filter gets invoked on *all* requests to Wicket including requests for static resources (such as CSS files and

Re: [Wicket-user] label - input

2007-06-12 Thread Huergo Perez
SimpleFormComponentLabel seems to work for things like input fields, etc. It however does not seem to work for radio buttons because a Radio button in Wicket is not a FormComponent... Pieter Cogghe wrote: I've found SimpleFormComponentLabel in the api, which wasn't listed in the component

Re: [Wicket-user] MarkupException using a fragment with a TabbedPanel

2007-06-11 Thread Huergo Perez
branch? -igor On 6/8/07, *Huergo Perez* [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: Hi All, I am having the following problem trying to use a TabbedPanel inside a fragment. The structure of components is the following: [CompanyDetailsPanel] - [RelatedInfoFragment

[Wicket-user] MarkupException using a fragment with a TabbedPanel

2007-06-08 Thread Huergo Perez
Hi All, I am having the following problem trying to use a TabbedPanel inside a fragment. The structure of components is the following: [CompanyDetailsPanel] - [RelatedInfoFragment] - [TabbedPanel]. Wicket throws a MarkupException complaining about a missing component ID. The exception message

[Wicket-user] Displaying a JavaScript alert after a click on a link

2007-06-01 Thread Huergo Perez
Hi All, I need to implement a functionality that in certain cases displays a JavaScript alert dialog after a click on a link. For example, a table of records may contain a [Delete] link against each record. When a user clicks on the link, the onClick handler attempts to delete the record, and

Re: [Wicket-user] Displaying a JavaScript alert after a click on a link

2007-06-01 Thread Huergo Perez
wrote: use a attribute modifier and a behavior for this.. Huergo Perez wrote: Hi All, I need to implement a functionality that in certain cases displays a JavaScript alert dialog after a click on a link. For example, a table of records may contain a [Delete] link against each record