Categories | Question details Back To List | ||
sorting and help icon in the header Hi, I have a "?" icon in the header. When user clicks on this icon there is a jquery qtip popup with help info. The problem is that the column is sorted the same time. I would want sorting not to be triggered if user clicks on "?" but still triggered if user clicks anywhere else on the header of the column. Is this possible ? thanks Victoria Answer posted by dhxSupport on Nov 20, 2009 02:54 You should cancel "onclick" event bubbling for "?" icon: <img src="url" onclick="(arguments[0]||window.event).cancelBubble=true;" /> |