메뉴 건너뛰기

SAP 한국 커뮤니티

Ch23 01-2번 EmpForm.fragment.xml

감자깡 2025.09.24 10:15 조회 수 : 2

<c:FragmentDefinition

    xmlns="sap.m"

    xmlns:c="sap.ui.core"

    xmlns:smartForm="sap.ui.comp.smartform"

    xmlns:smartField="sap.ui.comp.smartfield">

 

    <Dialog id="idDialog" resizable="true" draggable="true"

        title="직원정보" beforeClose="onDialogBeforeClose">

        <content>

            <smartForm:SmartForm id="idEmpSmartForm" editable="true">

                <smartForm:Group>

                    <smartForm:GroupElement>

                        <smartField:SmartField value="{Empcd}" />

                    </smartForm:GroupElement>

                </smartForm:Group>

            </smartForm:SmartForm>

        </content>

        <buttons>

            <Button icon="sap-icon://save" text="저장"

                press="onSaveButtonEmpPress" type="Emphasized" />

            <Button icon="sap-icon://cancel" text="취소"

                press="onCancelButtonEmpPress" type="Transparent" />

        </buttons>

    </Dialog>

 

</c:FragmentDefinition>