The user gets a pick list of propertyKeys which include those from the administration table.
I generate the "fake" keys with a wee bit of logic in the name of the key "rpt_project_quant".
public Object handleQueryWithUnboundKey(String key){
if(key.startsWith("rpt_project_quant_")){
key =key.substring("rpt_project_quant_".length(), key.length());
return this.quantitativeForecastedMetricValueByName(key);
}else if(key.startsWith("rpt")){
return null;
}else{
return super.handleQueryWithUnboundKey(key);
}
}
Now that my headers work too, my users will think it a dream.
Thanks a lot!
James
smime.p7s
Description: S/MIME cryptographic signature
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden