I have a layer in which I have any number of shapes. If I click any shape then that shape is toggled between selected an unselected. If "selected" a properties palette is populated providing ability to change selected shape's attributes. All this works well. I'm trying to add a feature if you click any blank area of the layer the "selected" shape will toggle off.
I've tryed the code below, but the "click" event does not fire when a blank area of the layer is clicked.
layer.on('click', function() {
toggleoff();
});
Any Thoughts
You can listen for clicks on the stage like this: http://jsfiddle.net/m1erickson/6CLA8/
var clickcount=0;
$(stage.getContent()).on('click', function (event) {
console.log(++clickcount));
});