Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

If allowMultipleInstances = false, then the first double click on location opens the “Shortcuts” and shows the display associated with the location.
Unlock this “Shortcuts” display with lock icon in the toolbar and next double clicks on a location will direct  to an associated display in the already opened “Shortcuts”.

An example:
if LocB or LocC If  LocA is double clicked ,  TSD will open to "Plot LocB" resp. "Plot LocC". If LocA is double clicked , Display 2",    since this display has <explorerLocationId>LocA</explorerLocationId> .

If  LocB is double clicked and the filter ModelA is selected,  TSD will open to "Plot LocCDisplay 3",    since this shortcut has <explorerLocationId>LocA<display has  <explorerFilterId>ModelA</explorerFilterId> and <explorerLocationId>LocB</explorerLocationId> .

Code Block
languagexml
titleDisplayGroups.xml config with doubleClickLocationEnabled option in explorerTasks (Explorer.xml)
<displayGroup name="Example">
            <display name="PlotDisplay LocA1">
                        <locationId>LocA</locationId>
                        <plotId>Discharge</plotId>
            </display>                   
 	           <display name="PlotDisplay LocB2">
                        <locationId>LocB<<explorerLocationId>LocA</locationId>explorerLocationId> 
                        <plotId>Discharge<<locationId>LocB</plotId>locationId>
            </display>            <plotId>Discharge</plotId>
           
 </display>   
 	        <display name="PlotDisplay LocC3">
                        <explorerLocationId>LocA<<explorerFilterId>ModelA</explorerLocationId>explorerFilterId> 
	                    <explorerLocationId>LocB</explorerLocationId>			
	    <locationId>LocC</locationId>
                <locationId>LocC</locationId>
                        <plotId>Discharge</plotId>  
            </display>       
</displayGroup>

loadAtStartup

...