Hi, In Wicket 1.4 we have following code snippet: final Map<String, String[]> params = getRequestCycle().getRequest().getParameterMap();
Wicket 6 doesn't have the capabilities of extracting a map. Is this assumption correct? I can only find a method that extracts the keys: final Set<String> parameterNames = getRequest().getRequestParameters().getParameterNames(); Do I have to built the map myself or is there a convenience function somewhere I overlooked? Thanks, David
