메뉴 건너뛰기

SAP 한국 커뮤니티

Ch23. 11번 ObjectView Detail 구성

감자깡 2025.09.22 17:36 조회 수 : 2

        
    xmlns:form="sap.ui.comp.smartform"
    xmlns:sf="sap.ui.comp.smartfield"

        

 


        <VBox id="_VboxDetail" >
            <form:SmartForm id="SF1" 
                            class="editableForm" 
                            editTogglable="true" 
                            editable="false" 
                            title="자격증 정보"
                            entityType="ZCERTINFO">

                <form:Group id="G1" >
                    <form:GroupElement id="GE_Certid">
                        <sf:SmartField id="idCertid" value="{Certid}"/>
                    </form:GroupElement>

                    <form:GroupElement id="GE_Certname">
                        <sf:SmartField id="idCertname" value="{Certname}"/>
                    </form:GroupElement>

                    <form:GroupElement id="GE_Company">
                        <sf:SmartField id="idCompany" textLabel="발급기관" value="{Company}"/>
                    </form:GroupElement>
                </form:Group>
            </form:SmartForm>
         </VBox >