Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <core:FragmentDefinition xmlns:l="sap.ui.layout"
- xmlns:f="sap.ui.layout.form" xmlns:mvc="sap.ui.core.mvc" xmlns:core="sap.ui.core"
- xmlns="sap.m">
- <Dialog id="idEditDialog" title="">
- <f:SimpleForm editable="true">
- <f:content>
- <VBox class="sapUiSmallMargin">
- <Input value="{person>Id}" id="idPerson" editable="false"/>
- <Input value="{person>ZzfirstName}" id="idfName"/>
- <Input value="{person>ZzlastName}" id="idlName"></Input>
- <CheckBox text="Active" selected="{person>Active}" id="idChB"></CheckBox>
- </VBox>
- </f:content>
- </f:SimpleForm>
- <FlexBox alignItems="Center">
- <Button type="Accept" icon="sap-icon://refresh" press="onUpdate" text="Update"/>
- <Button icon="sap-icon://decline" press="onCloseDialog" text="Close" type="Reject"/>
- </FlexBox>
- </Dialog>
- </core:FragmentDefinition>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement