라디오 값 과 기본 값
840 단어 Radio
<c:choose>
<c:when test="${report.isStaReport==true}">
<fmt:message key="reportCheckList.shishicount"/>:
<s:set name="ok" value="%{getText('common.true')}"/>
<s:set name="no" value="%{getText('common.false')}"/>
<s:radio name="report.isStaReport" list="#{'true':#ok,'false':#no}" theme="simple"/>
</c:when>
</c:choose>
radio 의 name 과 action 속성 이 대응 합 니 다.자동 으로 값 을 추출 해서 list 에서 판단 합 니 다.그의 값 이 무엇 인지 묵인 하고 어떤 것 을 선택 할 것 이다.
< s: set name = "ok" value = "% {getText (common. true)}" / > 이 문장의 value 는 설정 파일 에서 읽 은 사나이 입 니 다.사용 가능 합 니까?