There is a group of links, you need to set the same handler using ExtJS. We know the links classes. For example, the link to the deletion contains in the id attribute the number of the record to be deleted. I want to first process it using ExtJS, and then either follow the link on the default action, or stop this action (equivalent to preventDefault () in jQuery).
In ExtJS noob, google did not find. Help me please.
In general, I want to get an analogue of such a jQuery function:
$('.linkclass').click(function(e){ alert(this.attr('id')); e.preventDefault(); });