Uploaded image for project: 'Wicket'
  1. Wicket
  2. WICKET-4100

When using Wicket in a portlet, CheckGroup loses it`s value when some field is in error

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Resolved
    • Major
    • Resolution: Won't Fix
    • 1.4.18
    • None
    • wicket
    • Liferay 6.0.5 and Liferay 6.0.6 bundled with Tomcat

    Description

      Since in Liferay we can configure the portlets to redirect to view after an action request, and, differently from a standard web application, the page is generated during the response phase, when a component have some validation error in a form, the CheckGroups that are part of this form loose it's values.

      This is due to the fact that Check component, in it's onComponentTag() method, uses getInputAsArray(), which get the request parameters. However, during the render phase, the request parameters are lost when the portlet redirects to view after processing an action.

      This problem manifests also when using an FileUploadField in the form, independently of the redirect-after-post configuration.

      To workaround, I changed the onComponentTag of the Check component to use CheckGroup's getRawInput() instead of getInputAsArray, since the rawInput is also serialized with the component:

      if (group.hasRawInput())
      {
      String[] input;
      if (group.getRawInput() != null)
      input = group.getRawInput().split(FormComponent.VALUE_SEPARATOR);
      else
      input = new String[0];

      I do not know if this is the correct workaround, but, using this way, solved the problem for me.

      Attachments

        1. checkgroup-portlet.zip
          16 kB
          Robson Miranda

        Activity

          People

            Unassigned Unassigned
            rpdmiranda Robson Miranda
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: