You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
템플릿에서 이런식으로 보통 기본값 활용하는 방법을 많이 사용합니다..
필요한거 있으면 if문으로 최대한 해결하고 option에서는 선택이 없을때 어떤값인지 ko상에서 알려주기만하면될거같아요 (어차피 그런거 다 class선언시 값없을때 center 값이 선택된거처럼 만들지 않나요 ㅎㅎ)
<var name="layout_position" type="radio"> <title xml:lang="ko">레이아웃 정렬</title> <title xml:lang="en">Layout position</title> <options value="center"> <title xml:lang="ko">가운데 정렬 </title> <title xml:lang="en">Center justified </title> </options> <options value="left"> <title xml:lang="ko">왼쪽 정렬 </title> <title xml:lang="en">Left justified </title> </options> </var>
예를 들어 이런 레이아웃 설정 옵션이 있을 경우
<option value="center" default>
이렇게 설정해놓으면 미리 기본값으로 center값이 체크되어있으면 좋겠습니다.
The text was updated successfully, but these errors were encountered: