So i had to switch to setting a widgets alpha to 0 as opposed to deactivating the gameObject because upon reactivation the button did not detect interaction anymore and upon experimenting it was being blocked by elements that were higher in depth which would explain the aforementioned behaviour, but these elements were all in a different panel that was lower in depth then that of the element it was blocking. So run time in the scene editor i deactivated these objects that had uispriteimages with collider boxes and reactivated them and then all of a sudden they weren't blocking the aforementioned button anymore and i could interact with it. upon switching to setting the invisible via the alpha property this does not seem to happen anymore.
Are you not supposed to deactivate UIWidgets or other NGUI elements? and if so should i be using the alpha property or the widget.UpdateVisibility(bool,bool) function?