맨위로가기
 

SBUx

닫기

2.7 콤보박스 내 선택을 다중으로 만들기

STEP 1. checkbox type 콤보박스 생성

1. uitype 속성을 chekbox로 설정하여 컴포넌트를 생성합니다.
<script>
var jsondata = [
        {text : 'input', value : 'iValue'},
        {text : 'picker', value : 'pValue'},
        {text : 'radio', value : 'rValue'},
        {text : 'select', value : 'sValue'}
    ];
</script>
<sbux-select id="sbIdx1" name="sbName1" uitype="checkbox" jsondata-ref="jsondata"></sbux-select>

item리스트가 checkbox로 되어있는걸 확인해보세요.