Is-it possible to have event param passed by linkbutton onclick event?
I need to show dialog at mouse position when user click on a button, but mouse position is in event.pageX and event.pageY, problem with Firefox is that event variable is not known, i test this change and it work for me, but do you think it's possible to have this in next version?
.bind("blur.linkbutton",function(){
$(this).removeClass("l-btn-focus");
}).bind("click.linkbutton",function(e){
if(!_8c.disabled){
if(_8c.toggle){
if(_8c.selected){
$(this).linkbutton("unselect");
}else{
$(this).linkbutton("select");
}
}
_8c.onClick.call(this,e);
}
or maybe you have another solution?