Page 1 of 1

Position of lookup form

Posted: Fri Jul 21, 2023 1:45 pm
by Jannie
It seems a simple question, but I can't find a way to set position of a (one) lookup-form with JavaScript/jquery
I suppose I need to move nuDragDialog, but it isn't found when Browse/Edit/BrowseAndEdit scripts of the form are running.
Can you help me?

Re: Position of lookup form

Posted: Mon Aug 07, 2023 7:41 am
by kev1n
Hi,

Give this a go:

Code: Select all

var dialog = $('#nuDragDialog', window.parent.document);
dialog.css('left', '222px');

Re: Position of lookup form

Posted: Wed Aug 09, 2023 11:05 pm
by Jannie
This works! Thank you!