vote up 1 vote down star

I'm trying to write a web app which replaces the context menu (right-click menu) with my own customized ones. I want it so that when the user clicks on a table row, they get one certain context menu and when they click on the background of the page, they get a different one.

I have already written the menus and gotten them working. The problem comes in when trying to figure out how to get the background's menu to show ONLY when clicking on the background and how to get the table row's menu to show when that is clicked.

I tried using document.body.oncontextmenu for the body and and setting the oncontextmenu function for each table row, but the body's oncontextmenu function overrides the row's so I get the wrong menu. The menu for the table rows DOES work if I stop using the body's menu, so that's not the issue.

I could be using the wrong events, so is there a different event for just the background (and not the elements on top of the background)? Or a way to "prioritize" the events so the table row's function takes precedence? Thanks!

This is how the code looks:

var tableMenu; var bodyMenu;

	window.onload = function()
	{
		bodyMenu = new rightClickMenu("bodyMenu");
		document.body.oncontextmenu = function() { bodyMenu.show(); tableMenu.hide(); }
		bodyMenu.add("Add Entry", function()
		{
			alert("ADD");
		});

		tableMenu = new rightClickMenu("tableMenu", "tblSims");

		simRows = getElementsByClassName("trSimRow");
		for (var i in simRows)
			simRows[i].oncontextmenu = function() { tableMenu.show(this.id.substring(2)); bodyMenu.hide(); }

		tableMenu.add("Delete Entry", function(mac)
		{
			alert("DELETE");
		});

		document.body.onclick = function()
		{
			bodyMenu.hide();
			tableMenu.hide();
		};
	}

flag
2  
Replacing the context menu is EVIL! Grrrr... :) – Chris R Nov 3 at 14:27
There are nice uses for it: Google Maps, for example. – nickf Nov 3 at 14:29
@nickf Yeah, I suppose you're right. – Chris R Nov 3 at 14:31

2 Answers

vote up 0 vote down check

You have to work with the Javascript Event Propagation model. What happens is that your click event is automatically passed down the layers of objects on a page that have been registered as event listeners, unless you explicitly tell it to stop, try something like this:

function setupClickHandlers()
{
    document.getElementsByTagName('body')[0].onclick = doBodyMenu;
    document.getElementById('tableID').onclick = doTableMenu;
}

function doBodyMenu()
{
    //do whatever it does
}

function doTableMenu(e)
{
    //do whatever it does

    //stop the event propagating to the body element
    var evt = e ? e : window.event;

    if (evt.stopPropagation) {evt.stopPropagation();}
    else {evt.cancelBubble=true;}
    return false;
}

This should deal with the way each browser handles events.

link|flag
This worked for me. Thank you for the quick response. Just to make sure, does it always call in the order of innermost element to outermost element? i.e. table cell's onclick -> table row's onclick -> table's onclick -> body's onclick? – Travis Nov 3 at 16:41
it should do yes. – MalphasWats Nov 4 at 8:15
vote up 1 vote down

You can capture the target element, e.g.:

$('*').click(function(e) {
    alert(e.target);
    alert(e.target.tagName);
    if(e.target.tagName == 'html') {
        // show background menu
    }
});
link|flag
1  
there's going to be a LOT of overhead in a function like that. It would be better to use .live('click', function() { ... }) - or better yet, just apply it to $('html') – nickf Nov 3 at 14:31
1  
The selector was not really the point of the answer, the point was how to get the clicked element. Anyway, thanks for your comment. Oh, and how would live incur less overhead? – karim79 Nov 3 at 14:34

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.