Versions Compared

Key

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

...

HTML
<style>
	.radioLabel_dpt1 {
		font-size: 12pt;
		line-height: 1.8;
	}
</style>

<script> 
$(function() {
	
 	var boxes = $("[class*='articleList']");;

    for (var i = 1; i < boxes.length; i++) {
        boxes[i].style.display = "none";
    }

});
	
function select_tr(value) {
    var dataIndex = value;
    var boxes = document.getElementsByClassName('rw_corners');

    for (var i = 0; i < boxes.length; i++) {
        boxes[i].style.display = "none";
    }

    if (dataIndex == 0) {
        var systemList = document.getElementsByClassName('articleList_system');
        systemList[0].style.display = "";
    }
    else if (dataIndex == 1) {
        var networkList = document.getElementsByClassName('articleList_network');
        networkList[0].style.display = '';
    }
    else if (dataIndex == 2) {
        var app3rdList = document.getElementsByClassName('articleList_app3rd');
        app3rdList[0].style.display = '';
    }
    else if (dataIndex == 3) {
        var scannerList = document.getElementsByClassName('articleList_scanner');
        scannerList[0].style.display = '';
    }
    else if (dataIndex == 4) {
        var acchwList = document.getElementsByClassName('articleList_acchw');
        acchwList[0].style.display = '';
    }
    else if (dataIndex == 5) {
        var keypadList = document.getElementsByClassName('articleList_key');
        keypadList[0].style.display = '';
    }
    else {
        var wirelessList = document.getElementsByClassName('articleList_wireless');
        wirelessList[0].style.display = '';
    }
}
</script>



<div style="margin-top: 18px;">
	<span style="font-size: 14pt; font-weight: bold;">Select a problem type you have</span><br><br>
    <input type="radio" id="tr_screennotwork" name="tr" value="0" onclick="select_tr(this.value)" checked><label class="radioLabel_dpt1" for="tr_screen">A strange screen displays on the screen</label>  <br>
    <input type="radio" id="tr_notwork" name="tr" value="1" onclick="select_tr(this.value)" ><label  class="radioLabel_dpt1" for="tr_notwork">A device feature does not work</label>  <br>
    <input type="radio" id="tr_abnormal" name="tr" value="21" onclick="select_tr(this.value)" ><label  class="radioLabel_dpt1" for="tr_abnormal">Device operates abnormally</label><br>
    <input type="radio" id="tr_net_connect" name="tr" value="32" onclick="select_tr(this.value)" ><label  class="radioLabel_dpt1" for="tr_net_connect">Device cannot connect network< wireless communication (network, BT, etc.)</label>  <br>
    <input type="radio" id="tr_power" name="tr" value="43" onclick="select_tr(this.value)" ><label  class="radioLabel_dpt1" for="tr_power">Device have a power-related problem</label>  <br>
    <input type="radio" id="tr_bt_connect" name="tr" value="5" onclick="select_tr(this.value)" ><label  class="radioLabel_dpt1" for="tr_bt_connect">Device cannot connect Bluetooth</label> <br>

</div>



Divbox
classarticleList_system

Content by Label
showLabelsfalse
showSpacefalse
reversetrue
titleSystem
excludeCurrenttrue
cqllabel = "troubleshooting" and label = "system"

...