dijit.byId('test').on('click, contextmenu', function() {
alert('hi')
});//this doesn't work
app.map.on('mouse-move, mouse-drag', function(evt) {
//do something or other
});
//neither does this
app.map.on('click, contextmenu', function(evt) {
//do something or other
});