Changeset 25272 in main for branches/3.0.0/ibisph-view/src/main/webapp/xslt/html/query/module/builder/Page.xslt
- Timestamp:
- 05/18/22 15:46:22 (3 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.0.0/ibisph-view/src/main/webapp/xslt/html/query/module/builder/Page.xslt
r25073 r25272 137 137 selectedValuesElement.html( "(" + selectedValues + ")" ); 138 138 139 var showMapSelections = (" " < selectedCategoryOptionElement.getAttribute("geographyflag")); 139 var showMapSelections = (" " < selectedCategoryOptionElement.getAttribute("geographyflag")) 140 && (" " > selectedSeriesGroupBy); 140 141 var mapNameElement = document.getElementById("mapName"); 141 142 if(showMapSelections) … … 149 150 } 150 151 151 mapSelectionRowElement.style.opacity = (showMapSelections ? "1" : "0");152 mapSelectionRowElement.style.visibility = (showMapSelections ? "visible" : "collapse");153 154 152 // can't disable as won't post the value. readonly doesn't 155 153 // give any visual clues. easiest is to simply hide it for now... 156 154 // mapSelectionRowElement.disabled = !showMapSelections; 155 mapSelectionRowElement.style.opacity = (showMapSelections ? "1" : "0"); 156 mapSelectionRowElement.style.visibility = (showMapSelections ? "visible" : "collapse"); 157 157 } 158 158
Note: See TracChangeset
for help on using the changeset viewer.