UIComponent wrappedUIComponent = wrappedApplication.createComponent(facesContext, componentType, rendererType);
if (componentType.equals(DataPaginator.COMPONENT_TYPE)) {
// Workaround for: http://jira.icesoft.org/browse/ICE-6398
DataPaginator dataPaginator = new DataPaginatorBridgeImpl(wrappedUIComponent);
try {
dataPaginator.setUIData(dataPaginator.findUIData(facesContext));
wrappedUIComponent = dataPaginator;
}
catch (Exception e) {
logger.error(e);
}