<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>