Sorry, my fault! Something probably changed in the way how a scalar
panel is rendered. I had to override onConfigure in my custom component
to hide it.
Closed the issue.
On 09/22/2017 04:37 PM, Dan Haywood wrote:
Thanks. If you get the chance to look into it, see what broke, I'd
appreciate it.
Cheers
Dan.
On Fri, 22 Sep 2017, 15:33 Erik de Hair <[email protected]> wrote:
Raised issue ISIS-1737 [1]
Erik
[1] https://issues.apache.org/jira/browse/ISIS-1737
On 09/22/2017 04:20 PM, Dan Haywood wrote:
Yes, please.
Thx
Dan
On Fri, 22 Sep 2017 at 15:16 Erik de Hair <[email protected]> wrote:
Hi,
While upgrading to Apache Isis 1.15.0 I noticed hiding didn't work
anymore on properties represented by an interface. In the following
example the String will be hidden but the HideMe-property will not:
public HideMe getInterfaceToBeHidden(){
return null;
}
public boolean hideInterfaceToBeHidden(){
return true;
}
public String getStringToBeHidden(){
return "foo";
}
public boolean hideStringToBeHidden(){
return true;
}
With Apache Isis 1.14.x this works as expected.
Shall I raise an issue for this?
Thanks,
Erik