This works:
paper.on('cell:pointerdown', function(cellView, evt, x, y) {
alert("pointerdown");
});
but this code does not:
paper.on('cell:pointerclick', function(cellView, evt, x, y) {
alert("pointerclick");
});
the reason for this is that pointerdown is always first to fire, how can I use pointerclick and not run into pointerdown?
EDIT: the question might be a little misleading: I want to know why pointerclick is not fired at all when I click the mouse pointer. ponterdown is working but it stops there, nothing is propagated further (eg. when I depress the mouse button..- therefore performing a click)