I had to re-read your original post... So if I understand you correctly, you have an input field inside a scroll view, and you want it to be possible to drag the scroll view by pressing on the input field and moving the finger, but currently as soon as you press on it it will start the input logic. You want to prevent this, correct?
First, don't use UIInput as-is. It's written to react to a selection, which happens as soon as you press on it.
Either have it start disabled, or have another invisible widget covering it (ALT+SHIFT+W). This widget will intercept the event (and will have UIDragScrollView on it). Add an OnClick() function to this widget, and inside give your input field selection (UIInput.isSelected = true). To make it possible to interact with it using the mouse/touch, make sure that your dummy widget also happens to be disabled while the input field has focus. As soon as the focus is lost (it gets OnSelect(false)), re-enable your dummy widget.