return createUIComponent(context, type, configId, componentId);
}
public <T extends UIComponent> T createUIComponent(WebuiRequestContext context, Class<T> type, String configId,
String componentId) throws Exception {
WebuiApplication app = (WebuiApplication) context.getApplication();
T comp = app.createUIComponent(type, configId, componentId, context);
return comp;
}