ui5flowdev
Version:
UI5FlowDev enables you to manage and run your UI5 applications on a local server with reverse-proxy support. It also provides you the option to build your applications and deploy them to SAP NetWeaver ABAP.
23 lines • 1.9 kB
text/xml
<core:FragmentDefinition xmlns="sap.m" xmlns:l="sap.ui.layout" xmlns:f="sap.ui.layout.form" xmlns:core="sap.ui.core">
<Dialog id="AddNew" title="{i18n>AppList.addNewTitle}" contentWidth="700px">
<content>
<VBox class="sapUiSmallMargin">
<f:SimpleForm width="100%" minWidth="1024" maxContainerCols="2" editable="true" layout="ResponsiveGridLayout" labelSpanL="2" labelSpanM="2" emptySpanL="1" emptySpanM="1" columnsL="1" columnsM="1" class="editableForm">
<f:content>
<Label text="{i18n>AppList.appName}" />
<Input id="newAppName" value="{applicationRead>name}" class="sapUiTinyMarginBottom" valueStateText="{i18n>AppList.valueCheckAppName}" liveChange="onAppNameCheck" enabled="true" editable="true" />
<Label text="{i18n>AppList.appDescription}" />
<TextArea id="newAppDescription" value="{applicationRead>description}" class="sapUiTinyMarginBottom" growing="true" rows="5" growingMaxLines="10" width="100%" />
<Label text="{i18n>AppList.appPath}" />
<Input id="newAppPath" value="{serverConfig>/appsDir}{serverConfig>/pathDelimiter}" class="sapUiTinyMarginBottom" enabled="true" editable="false" />
</f:content>
</f:SimpleForm>
</VBox>
</content>
<buttons>
<Button id="bShowMessagesNew" icon="sap-icon://message-popup" text="" type="Emphasized" press="showMessagePopover" visible="false" />
<Button id="bNewSave" text="{i18n>AppList.save}" icon="sap-icon://accept" press="onNewAppSave" enabled="false"/>
<Button id="bNewClose" text="{i18n>AppList.cancel}" icon="sap-icon://sys-cancel" press="onNewAppClose" />
</buttons>
</Dialog>
</core:FragmentDefinition>