Skip to content

Commit 71e3c47

Browse files
authored
RDKB-62740: Disable 320MHz for 11ax mode ion 6GHz (#83)
RDKB-62740: Disable 320MHz for 11ax mode ion 6GHz Reason for change: 320MHz not supported for 11ax mode in 6GHz Test Procedure: Build and verify in MSO page Risks: Low Priority: P1
1 parent 805c7ee commit 71e3c47

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

source/Styles/xb6/jst/wireless_network_configuration_onewifi.jst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -808,6 +808,13 @@ $(document).ready(function() {
808808
$("#operation_mode1").prop("disabled", true);
809809
}
810810
}).trigger("change");
811+
$("#wireless_mode3").change(function() {
812+
if ("ax"==$("#wireless_mode3").val()) {
813+
$("#channel_bandwidth7").prop("disabled", true);
814+
} else if("ax,be"==$("#wireless_mode3").val() || "be"==$("#wireless_mode3").val()) {
815+
$("#channel_bandwidth7").prop("disabled", false);
816+
}
817+
}).trigger("change");
811818
$("#channel_number").change(function() {
812819
show_extch(document.getElementById("channel_number").value);
813820
}).trigger("change");

0 commit comments

Comments
 (0)