I assume LMP is LMB, and "hilding" is "holding", and by "click" you meant "press" because a click is press and release, so there is no "hold" involved.
NGUI's drag & drop functionality has various means of starting the drag & drop operation, and you can change it on the script itself. When the drag & drop operation begins, the collider on the dragged object is supposed to be disabled, which is what makes it possible to drop the object on something else. Clicking on an item using NGUI's built-in scripts does not start the drag & drop operation at all. A click is just a click. You need to actually press and drag or press and hold the mouse for drag & drop to start. Did you write any custom code?