Versions Compared

Key

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

...

UI Text Box
sizemedium
typewarning

이 페이지는 현재 비공개 상태입니다. 이 페이지에 속한 글도 마찬가지로 비공개 상태이니, 공유하실때는 PDF 등으로 공유해주세요.

HTML
<script>
function select_tr(value) {
    var dataIndex = value;
    var tab = document.getElementsByClassName('rwui_tab_button');
    var tab_content = document.getElementsByClassName('rwui_tab_content');

    for (var i = 0; i < tab.length; i++) {

        if (tab[i].dataset.index === dataIndex) {
            var tab_toselect = tab[i];
            
            tab[i].classList.remove('rw_active');

            for (var j = 0; j < tab_content.length; j++) {
                var content_toselect = tab_content[j];

                if (content_toselect.dataset.hash === tab_toselect.dataset.hash) {
                    content_toselect.className += ' rw_active';

                    break;
                }
            }
        }
        else {
            tab[i].classList.remove('rw_active');
        }
    }

}
</script>


<div>
    <input type="radio" id="tr_screen" name="tr" value="0" onclick="select_tr(this.value)" checked><label for="tr_screen">Strang screen displays</label>  
    <input type="radio" id="tr_notwork" name="tr" value="1" onclick="select_tr(this.value)" ><label for="tr_notwork">Feature does not work</label>  
    <input type="radio" id="tr_abnormal" name="tr" value="2" onclick="select_tr(this.value)" ><label for="tr_abnormal">Abnormal operation</label><br>
    <input type="radio" id="tr_net_connect" name="tr" value="3" onclick="select_tr(this.value)" ><label for="tr_net_connect">Cannot connect network</label>  
    <input type="radio" id="tr_power" name="tr" value="4" onclick="select_tr(this.value)" ><label for="tr_power">Power-related</label>  
    <input type="radio" id="tr_bt_connect" name="tr" value="5" onclick="select_tr(this.value)" ><label for="tr_bt_connect">Cannot connect Bluetooth</label>

</div>



UI Tabs
UI Tab
titleSystem

Page properties report
showLikesCounttrue
headingsModel
pageSize15
cqllabel = "system" and space = currentSpace()

UI Tab
titleNetwork

Page properties report
showLikesCounttrue
headingsModel
pageSize15
cqllabel = "network" and space = currentSpace()

UI Tab
titleApp / 3rd Party

Page properties report
showLikesCounttrue
headingsModel
pageSize15
cqllabel in ("app","3rdparty") and space = currentSpace()

UI Tab
titleScanner

Page properties report
showLikesCounttrue
headingsModel
pageSize15
cqllabel = "scanner" and space = currentSpace()

UI Tab
titleHW & Acc

Page properties report
showLikesCounttrue
headingsModel
pageSize15
cqllabel in ("hw","acc") and space = currentSpace()

UI Tab
titleKeypad

Page properties report
showLikesCounttrue
headingsModel
pageSize15
cqllabel = "keypad" and space = currentSpace()

UI Tab
titleBT / NFC / RFID

Page properties report
showLikesCounttrue
headingsModel
pageSize15
cqllabel in ("bluetooth","nfc","rfid") and space = currentSpace()

UI Tab
titlePower & Battery

Page properties report
showLikesCounttrue
headingsModel
pageSize15
cqllabel in ("power","battery") and space = currentSpace()

...