In ext js, I come across functions like this:
SearchWindow.WindowCloseButton.on('click',function(btn,e){
SearchWindow.hide();
});
So on click of close button, the window will be hidden. But why does the function need those two arguments (btn, e) when they are not being used inside the function? I am a java developer and I am unable to understand this syntax