Hi,

If i specify the value in the DefineTag then the name/property is ignored!!
But when i also specify the name/property then i want the value to be filled in when
name/property seems to be null!

so not:

 // Retrieve the required property value
 Object value = this.value;
 if (value == null)
  value = RequestUtils.lookup(pageContext, name, property, scope);

but:

 // Retrieve the required property value
 Object value = null;
if(name != null)
    value = RequestUtils.lookup(pageContext, name, property, scope);
 if (value == null)
  value = this.value;

johan


Reply via email to