CustomPageConfig config = this.getCustomPageConfig();
Widget[] customShowlets = (null == config || config.getConfig() == null) ? null : config.getConfig();
Widget[] showletsToRender = this.getPageUserConfigManager().getShowletsToRender(currentPage, customShowlets);
Widget showlet = showletsToRender[this.getFrameToResize()];
if (null == showlet) return true;
WidgetUpdateInfoBean resizingFrame =
new WidgetUpdateInfoBean(this.getFrameToResize(), showlet, status);
this.addUpdateInfoBean(resizingFrame);
this.executeUpdateUserConfig(currentPage);
} catch (Throwable t) {
ApsSystemUtils.logThrowable(t, this, "executeResizeFrame", "Error on resize frame");
return false;