Hi Eric,
thanks for reply.
webMethods automatically create a SelectableListTableContentProvider called “Richieste” when I import the webservice.
I created an action called “cerca” that invoke the refresh of the webservice.
In java code i write this code:
public String cerca() {
resolveDataBinding(CERCA_PROPERTY_BINDINGS, this, “cerca.this”, true, false);
Richiesta2 rich = getGetRequests().getResult();
int i = rich.length;
int k;
String anno = getGetBimestreCorrente().getResult().getAnno();
String bimestre = getGetBimestreCorrente().getResult().getBimestre();
for (k=0; k<i;k++){
if (!rich[k].getRichiesta().getAnno().equals(anno) && !rich[k].getRichiesta().getBimestre().equals(bimestre)){
getSelectRowCheckboxId().setDisabled(true);
}
}
return OUTCOME_OK;
}
It is the correct way?
Can you attach me a sample code with explanation for do this?
Thanks
Bye
Fabio
#webMethods-BPMS#MWS-CAF-Task-Engine#webMethods