From 45b5a0039edcca02aa020d67e0c04737e7d9756e Mon Sep 17 00:00:00 2001 From: roushan-tel Date: Wed, 10 Dec 2025 11:41:53 +0530 Subject: [PATCH] RDKB-62740: Disable 320MHz for 11ax mode ion 6GHz 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 --- .../xb6/jst/wireless_network_configuration_onewifi.jst | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/source/Styles/xb6/jst/wireless_network_configuration_onewifi.jst b/source/Styles/xb6/jst/wireless_network_configuration_onewifi.jst index 0c51e04..70a1fd5 100644 --- a/source/Styles/xb6/jst/wireless_network_configuration_onewifi.jst +++ b/source/Styles/xb6/jst/wireless_network_configuration_onewifi.jst @@ -808,6 +808,13 @@ $(document).ready(function() { $("#operation_mode1").prop("disabled", true); } }).trigger("change"); + $("#wireless_mode3").change(function() { + if ("ax"==$("#wireless_mode3").val()) { + $("#channel_bandwidth7").prop("disabled", true); + } else if("ax,be"==$("#wireless_mode3").val() || "be"==$("#wireless_mode3").val()) { + $("#channel_bandwidth7").prop("disabled", false); + } + }).trigger("change"); $("#channel_number").change(function() { show_extch(document.getElementById("channel_number").value); }).trigger("change");