That control has the id of “keywordsHelpIcon”, so you can lookup the component and disable it as in the following snippet:
public String initialize() {
try {
resolveDataBinding(INITIALIZE_PROPERTY_BINDINGS, null, "initialize", true, false);
UIComponent helpBtn = findComponentInRoot("keywordsHelpIcon");
helpBtn.setRendered(false);
return OUTCOME_OK;
} catch (Exception e) {
error(e);
log(e);
return OUTCOME_ERROR;
}
}
Regards,
–mark
#webMethods-BPMS#MWS-CAF-Task-Engine#webMethods