I just wanted to ask what is the usual way of wiring property nodes of controls? For example if I have 5 controls that I want to disable. Should I wire the errors in parallel (and then merge them) or sequentially or not wire them at all?
You'll probably get a lot of different answer on this depending on one's religion. Personally, I rarely wire up the error clusters to/from property nodes in the block diagram unless I want to establish specific execution order. If there is a run-time error there's little I can do about this, and it's worth worrying about it. Maybe I'm wrong, but that's my religion. Being wrong, that is.
I usually wire errors no matter what. In your case, I would create an array of references and then use a for loop and pass the array of errors to the merge errors vi. The only disadvantage is that this serializes execution. This can be a problem if you're updating a lot of indicators on the front panel. However in that case I usually call "defer front panel updates" before I change properties and then once I'm finished I call "defer front panel updates" again, that way the front panel only updates once instead of per property node.