I have a sample of icons in a HBox in an XML view as below:
<m:HBox>
<core:Icon src="sap-icon://show" color="#007bff" id="test1" press="onPressView" />
<core:Icon src="sap-icon://edit" color="#007bff" id="test2" press="onPressEdit" />
<core:Icon src="sap-icon://print" color="#007bff" id="test3" press="onPressPrint" />
</m:HBox>
In controller to set visible false, I am doing as:
let testIcon1 = this.getview().byId('test1');
testIcon1.setVisible(false);
But this isn't working.