1. select 컴포넌트를 생성합니다.
<script>
var json_master = [
{text : 'input', value : 'iValue'},
{text : 'picker', value : 'pValue'},
{text : 'radio', value : 'rValue'},
{text : 'select', value : 'sValue'}
];
</script>
<sbux-select id="sbIdx1_1" name="sbName1" uitype="single" jsondata-ref="json_master"></sbux-select>
1. style 속성을 설정합니다.
<script>
var json_master = [
{text : 'input', value : 'iValue'},
{text : 'picker', value : 'pValue'},
{text : 'radio', value : 'rValue'},
{text : 'select', value : 'sValue'}
];
</script>
<sbux-select id="sbIdx1_1" name="sbName1" uitype="single" jsondata-ref="json_master" style="height:100px" ></sbux-select>
2. class 속성을 설정합니다.
<style>
.selectHeight{
height:100px;
}
</style>
<script>
var json_master = [
{text : 'input', value : 'iValue'},
{text : 'picker', value : 'pValue'},
{text : 'radio', value : 'rValue'},
{text : 'select', value : 'sValue'}
];
</script>
<sbux-select id="sbIdx1_1" name="sbName1" uitype="single" jsondata-ref="json_master" class="selectHeight"></sbux-select>