The Show All Regions button allows the user to see all regions on the map, regardless of region assignments. Responder provides the option to hide this tool and allow users to view only the regions to which they are assigned.
- First, remove the tool from the user interface by taking it out of the Regions.custom.layout file. This file is installed here: Program Files\Miner and Miner\Responder\Client\addons\Miner.Responder.Explorer. Look for the following line in the XML.
|
Copy Code
|
<Command key="RegionsShowAll" type="Miner.Responder.Explorer.Commands.CommandButtonRegionsShowAll,
Miner.Responder.Explorer, Version=9.2.0.0, Culture=neutral, PublicKeyToken=196beceb052ed5dc"/>
|
- Either delete this line or comment it out.
- Save and close Regions.custom.layout.
- Next, use the Miner.Responder.Explorer.exe.config to determine which regions to display. This file is installed here: Program Files\Miner and Miner\Responder\Client
- Look for the <appSettings> section. Locate within this section a line with a key value of "ShowAllRegions".
|
Copy Code
|
<appSettings> <add key="PhaseDegField" value="PhaseDesignation"/> <add key="NormalPosAField" value="NormalPosition_A"/> <add key="NormalPosBField" value="NormalPosition_B"/> <add key="NormalPosCField" value="NormalPosition_C"/> <add key="ResponderCachedLayersName" value="Responder_cached"/> <add key="ShowIncidentReportMap" value="false"/> <add key="MapServerLocation" value="http://responderServer/images/mapimage.aspx"/> <add key="IncidentReportMapWidth" value="600"/> <add key="IncidentReportMapHeight" value="400"/> <add key="ShowAllRegions" value="false"/> </appSettings>
|
- The ShowAllRegions value defaults to false. When set to false, the user will see only the regions to which he has been assigned. If this value is set to true, the user will see all regions, regardless of assignment.
|
Responder refers to the ShowAllRegions property only when the Show All Regions button has been removed (or commented out of) the Regions.custom.layout file. |
- Save and close Miner.Responder.Explorer.exe.config.