Hiding controls in Kinetic

I just thought that I’d throw this out there in case someone else has come across it.
I have a few shape controls (and a checkbox control) on a Kinetic customisation on the Sales Order Header Details screen. These controls don’t need to be seen when creating a new sales order, so I have been trying to hide them (using the property-set widget, setting property “hidden” to true). I’ve tried hooking into a number of different events but without success.
I can see in the console log that my event does get called and sets the properties, it just doesn’t update the UI.
I have successfully been able to hide/show controls when loading an existing sales order - just stuck when it comes to creating a new order.
Has anyone tried something like this? Were you able to resolve it?

I have not tried it, but I would go the Row Rules route if I were to try.

Hi John,
I had considered row rules, but row rules operate on the fields, which notify the bound controls to update their properties. The shapes I’m trying to hide are unbound controls. Although, I could try creating a temporary dataview so that a binding could be added to the controls. I might try that to see if it will work.