<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class="">
Hi Kai,
<div class=""><br class="">
</div>
<div class=""> Just to be sure that one browser hasn’t cached an older JavaScript (shouldn’t have happened),</div>
<div class="">you can check the Disable cache checkbox in the devtools Network tab and refresh the browser.</div>
<div class=""><br class="">
</div>
<div class="">You can try using the Firefox debugger to see what code is running (or failing to run) when</div>
<div class="">you click e.g. the ‘position’ widget.</div>
<div class=""><br class="">
</div>
<div class="">Go to the Debugger tab, and on the left panel , open static > figure > figure.js.</div>
<div class="">Then you can search for this text using Cmd-F:</div>
<div class="">"// Handles all the various drop-down menus in the 'New' AND 'Edit Label’ forms”</div>
<div class=""><br class="">
</div>
<div class="">That should find you the select_dropdown_option() function.</div>
<div class="">In the first line of that function, you can click on the line number (5634 for me) to</div>
<div class="">set a breakpoint.</div>
<div class=""><br class="">
</div>
<div class="">Then you can click on the ‘position’ button in the UI and you should enter Debug mode.</div>
<div class="">Now you can use the controls on the right panel of devtools to 'Step Over’ each line.</div>
<div class=""><br class="">
</div>
<div class="">The screenshot show this in action, having reached the line</div>
<div class="">$span = $span.clone();</div>
<div class=""><br class="">
</div>
<div class="">I’ve scrolled down and opened the Scopes panel in the right, which shows</div>
<div class="">me the $span is the one I clicked on.</div>
<div class=""><br class="">
</div>
<div class=""><br class="">
</div>
<div class="">However, if you’re seeing nothing happen then the </div>
<div class="">select_dropdown_option()</div>
<div class="">function may not even be reached for you?</div>
<div class=""><br class="">
</div>
<div class="">Not sure what else to suggest, but see if you can find anything,</div>
<div class=""><br class="">
</div>
<div class="">  Cheers,</div>
<div class=""><br class="">
</div>
<div class="">   Will.</div>
<div class=""><br class="">
</div>
<div class=""><br class="">
</div>
<div class=""><br class="">
<div>
<blockquote type="cite" class="">
<div class="">On 5 Dec 2017, at 13:56, Kai Schleicher <<a href="mailto:kai.schleicher@unibas.ch" class="">kai.schleicher@unibas.ch</a>> wrote:</div>
<br class="Apple-interchange-newline">
<div class="">
<div text="#000000" bgcolor="#FFFFFF" class="">
<p class="">Hi Will,</p>
<p class="">please find my answers in-line:<br class="">
</p>
<div class=""><br class="webkit-block-placeholder">
</div>
<blockquote type="cite" class="">
<div class=""> You could try to Right-click > Inspect Element in each browser on the exact spot where you’re clicking</div>
<div class="">on the drop-down menu, particularly in the case where the click is having no effect.</div>
</blockquote>
as far as I can tell the same DOM (?) element is selected in both cases (see attached screenshot from the problematic machine)
<div class=""><br class="webkit-block-placeholder">
</div>
<blockquote type="cite" class="">Also, is there any difference in touch-screen functionality between those 2 machines?</blockquote>
no, both machines don't support touch-screen.<br class="">
<br class="">
<blockquote type="cite" class="">
<div class="">Is it the "Add Labels” form that is being unresponsive?</div>
<div class="">Or is it the editing of individual labels under “Edit Labels” that’s not working (or both)?</div>
</blockquote>
both<br class="">
<br class="">
Thanks for your help and cheers,<br class="">
Kai<br class="">
<br class="">
<br class="">
<div class="moz-cite-prefix">On 12/05/2017 02:35 PM, William Moore (Staff) wrote:<br class="">
</div>
<blockquote type="cite" cite="mid:DECEB7AB-20A7-4F5E-822A-BCA5F200774C@dundee.ac.uk" class="">
Hi Kai,
<div class=""><br class="">
</div>
<div class=""> You could try to Right-click > Inspect Element in each browser on the exact spot where you’re clicking</div>
<div class="">on the drop-down menu, particularly in the case where the click is having no effect.</div>
<div class=""><br class="">
</div>
<div class="">Try to see if there’s a different DOM element under the mouse pointer at that time.</div>
<div class="">Also, is there any difference in touch-screen functionality between those 2 machines?</div>
<div class=""><br class="">
</div>
<div class="">Is it the "Add Labels” form that is being unresponsive?</div>
<div class="">Or is it the editing of individual labels under “Edit Labels” that’s not working (or both)?</div>
<div class=""><br class="">
</div>
<div class=""> Cheers,</div>
<div class=""><br class="">
</div>
<div class="">  Will.</div>
<div class=""><br class="">
</div>
<div class=""><br class="">
<div class="">
<blockquote type="cite" class="">
<div class="">On 5 Dec 2017, at 13:28, Kai Schleicher <<a href="mailto:kai.schleicher@unibas.ch" class="" moz-do-not-send="true">kai.schleicher@unibas.ch</a>> wrote:</div>
<br class="Apple-interchange-newline">
<div class="">
<div text="#000000" bgcolor="#FFFFFF" class="">
<p class="">HI Will,</p>
<p class="">thanks for the superfast reply!</p>
<p class="">I did what you suggested, but unfortunately the output in the console is exactly the same between the two machines, i.e. holds no clues.</p>
<p class="">It simply gives a warning saying "Empty string passed to getElementById()." in both cases, but no errors.<br class="">
</p>
<p class="">Is there another place where I can look for differences?</p>
<p class="">Thanks and cheers,<br class="">
Kai<br class="">
</p>
<br class="">
<div class="moz-cite-prefix">On 12/05/2017 02:00 PM, William Moore (Staff) wrote:<br class="">
</div>
<blockquote type="cite" cite="mid:4C1C0AEA-B03F-46C6-955C-F526EEAE82F8@dundee.ac.uk" class="">
Hi Kai,
<div class=""><br class="">
</div>
<div class=""> I can’t think what the issue is so far.</div>
<div class=""><br class="">
</div>
<div class="">Can you open the dev-tools on Firefox? Easiest is to right-click anywhere on the page and choose “Inspect Element”.</div>
<div class="">Then choose the Console tab in the dev-tools and see if you see any errors etc when you reproduce the bug.</div>
<div class=""><br class="">
</div>
<div class="">Hopefully that might give some clues.</div>
<div class="">I’ll see if I can think of any better ideas what might be the problem…</div>
<div class=""><br class="">
</div>
<div class=""> Cheers,</div>
<div class=""><br class="">
</div>
<div class="">  Will.</div>
<div class=""><br class="">
</div>
<div class=""><br class="">
</div>
<div class=""><br class="">
<div class="">
<blockquote type="cite" class="">
<div class="">On 5 Dec 2017, at 12:42, Kai Schleicher <<a href="mailto:kai.schleicher@unibas.ch" class="" moz-do-not-send="true">kai.schleicher@unibas.ch</a>> wrote:</div>
<br class="Apple-interchange-newline">
<div class="">
<div text="#000000" bgcolor="#FFFFFF" class="">
<p class="">Dear OME team,</p>
<p class="">I am experiencing an odd issue with OMERO.figure and am struggling to troubleshoot it properly, please see quote message below.</p>
<div class=""><br class="webkit-block-placeholder">
</div>
<blockquote type="cite" class="">The Problem is that selections from the dropdown-menus in OMERO.figure are not accepted.<br class="">
For example, we can add a label, but we can't change the size, position or colour from the default. The same thing applies to ROIs: they can be added, but not edited. All buttons exist in the drop down menu and can be selected, but they are not set/accepted.</blockquote>
<div class=""><br class="webkit-block-placeholder">
</div>
<p class="">Now whats peculiar about this:</p>
<p class="">I have two computers, both managed Win7 64bit machines part of the same active directory, both using the same version of Firefox portable (57.1).<br class="">
On one machine I experience the above issue, but <b class="">not</b> on the other.<br class="">
</p>
<p class="">I am currently at a loss as to how I could debug this issue further. <br class="">
If you have an idea and could you point me in the right direction to look it be very happy :)<br class="">
</p>
<p class="">As always, thanks for your help and cheers,<br class="">
Kai</p>
<pre class="moz-signature" cols="72">-- 
>>Please note my NEW PHONE NUMBERS: +41 61 207 57 31 (direct) +41 61 207 22 50 (central)<<
Kai Schleicher, PhD | Research Associate in Advanced Light Microscopy | Biozentrum, University of Basel | Klingelbergstrasse 50/70 | CH-4056 Basel |
Phone: +41 61 207 57 31 (direct) +41 61 207 22 50 (central) | <a class="moz-txt-link-abbreviated" href="mailto:kai.schleicher@unibas.ch" moz-do-not-send="true">kai.schleicher@unibas.ch</a> | <a class="moz-txt-link-abbreviated" href="http://www.biozentrum.unibas.ch/" moz-do-not-send="true">www.biozentrum.unibas.ch</a> | <a class="moz-txt-link-abbreviated" href="http://www.microscopynetwork.unibas.ch/" moz-do-not-send="true">www.microscopynetwork.unibas.ch</a></pre>
</div>
_______________________________________________<br class="">
ome-users mailing list<br class="">
<a href="mailto:ome-users@lists.openmicroscopy.org.uk" class="" moz-do-not-send="true">ome-users@lists.openmicroscopy.org.uk</a><br class="">
<a class="moz-txt-link-freetext" href="http://lists.openmicroscopy.org.uk/mailman/listinfo/ome-users" moz-do-not-send="true">http://lists.openmicroscopy.org.uk/mailman/listinfo/ome-users</a><br class="">
</div>
</blockquote>
</div>
<br class="">
</div>
<br class="">
<span style="font-size:10pt;" class="">The University of Dundee is a registered Scottish Charity, No: SC015096</span>
<br class="">
<fieldset class="mimeAttachmentHeader"></fieldset> <br class="">
<pre class="" wrap="">_______________________________________________
ome-users mailing list
<a class="moz-txt-link-abbreviated" href="mailto:ome-users@lists.openmicroscopy.org.uk" moz-do-not-send="true">ome-users@lists.openmicroscopy.org.uk</a>
<a class="moz-txt-link-freetext" href="http://lists.openmicroscopy.org.uk/mailman/listinfo/ome-users" moz-do-not-send="true">http://lists.openmicroscopy.org.uk/mailman/listinfo/ome-users</a>
</pre>
</blockquote>
<br class="">
</div>
</div>
</blockquote>
</div>
<br class="">
</div>
<br class="">
<span style="font-size:10pt;" class="">The University of Dundee is a registered Scottish Charity, No: SC015096</span>
</blockquote>
<br class="">
</div>
<span id="cid:B78859D3-E45C-470C-85C2-A7662EA5A0E8@lifesci.dundee.ac.uk"><Screenshot from 2017-12-05 14-54-05.png></span></div>
</blockquote>
</div>
<br class="">
</div>
<br>
<span style="font-size:10pt;">The University of Dundee is a registered Scottish Charity, No: SC015096</span>
</body>
</html>