// the grid panel (for WCS 1.0 requests)
buildGridPanel();
// the format chooser
CoverageResponseDelegateFinder responseFactory = (CoverageResponseDelegateFinder) GeoServerApplication.get().getBean("coverageResponseDelegateFactory");
formats = new DropDownChoice<String>("format", new PropertyModel(getCoverage, "outputFormat"), responseFactory.getOutputFormats());
details.add(formats);
// the target CRS
targetCRS = new CRSPanel("targetCRS", new PropertyModel(getCoverage, "targetCRS"));
details.add(targetCRS);