Trying to hide the arrow on drag and drop for RadListBox. Found a post on setting the z-index for the css style .rlbDragClue and I've tried everything, display:none, visibility:hidden, background:none, all with the !important designator, nothing works. Always get the arrow.
.rlbDragClue {background: none !important;
visibility:hidden !important;
z-index: -5000 !important;
}
Thank you, that did it. Guess I should have 'Drop'ed instead of 'Drag'ed.