Hi, I began to use a custom.js to make the busy.gif appear at the position where the user clicks the mouse.
It works ok in a browse proc but when I include this browse proc in a memory form to get it filtered by another fields and I, by example, accept one drop and the drop refresh the browse the busy.gif does not appears.
The field to filter the browse are in a separate Tab, see pic
This is the js code:
jQuery("html").bind("click",function(e){
$("#_busy").css('left',e.pageX+1).css('top',e.pageY+1);
});
Any way of make it work?