Advertisement
Cristian-Paolini

View Agregar Juegos

Aug 31st, 2022
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 4.28 KB | None | 0 0
  1. <core:FragmentDefinition xmlns="sap.m"
  2.    xmlns:core="sap.ui.core"
  3.    xmlns:f="sap.ui.layout.form"
  4.    xmlns:l="sap.ui.layout">
  5.     <Dialog title="Agregar Juegos" id="dialogAddJuegos" busyIndicatorDelay="0" contentWidth="100%">
  6.         <content>
  7.             <VBox >
  8.                 <Table items="{AgregarJuegos>/}" noDataText="{i18n>ODialogJuegosVacio}" fixedLayout="false">
  9.                     <columns>
  10.                         <Column width="3rem">
  11.                             <header>
  12.                                 <Label text=""/>
  13.                             </header>
  14.                         </Column>
  15.  
  16.                         <Column width="10rem">
  17.                             <header>
  18.                                 <Label text="{i18n>TablaJue_UrlLogoJuego}"></Label>
  19.                             </header>
  20.                         </Column>
  21.  
  22.                         <Column width="10rem">
  23.                             <header>
  24.                                 <Label text="Nombre del Juego"></Label>
  25.                             </header>
  26.                         </Column>
  27.  
  28.                         <Column width="10rem">
  29.                             <header>
  30.                                 <Label text="{i18n>TablaJue_PrecioJuego}"></Label>
  31.                             </header>
  32.                         </Column>
  33.  
  34.                         <Column width="10rem">
  35.                             <header>
  36.                                 <Label text="{i18n>TablaJue_FechaLanzamiento}"></Label>
  37.                             </header>
  38.                         </Column>
  39.  
  40.                         <Column width="10rem">
  41.                             <header>
  42.                                 <Label text="{i18n>TablaJue_Multijugador}"></Label>
  43.                             </header>
  44.                         </Column>
  45.                        
  46.                         <Column width="10rem">
  47.                             <header>
  48.                                 <Label text="{i18n>TablaJue_EnLinea}"></Label>
  49.                             </header>
  50.                         </Column>
  51.                     </columns>
  52.                     <items>
  53.                         <ColumnListItem >
  54.                             <cells>
  55.                                 <core:Icon size="3.125rem" src="sap-icon://add-product" />
  56.                                 <Input type="Url" value="{AgregarJuegos>UrlLogoJuego}" required="true" placeholder="{i18n>inputUrlLogo}" />
  57.                                 <Input type="Text" value="{AgregarJuegos>NombreJuego}" required="true" placeholder="{i18n>inputNombreJuego}" />
  58.                                 <Input type="Number" value="{AgregarJuegos>Precio}" required="true" placeholder="{i18n>inputPrecio}" />
  59.                                 <DatePicker dateValue="{AgregarJuegos>FechaLanzamiento}" required="true" placeholder="{i18n>datePickerFecha}"></DatePicker>
  60.                                 <Select width="100%"
  61.                                    forceSelection="false"
  62.                                    selectedKey="{AgregarJuegos>Multijugador}">
  63.                                     <core:Item key="D" text="{i18n>SelectDisponible}" />
  64.                                     <core:Item key="N" text="{i18n>SelectNoDisponible}" />
  65.                                 </Select>
  66.                                 <Select width="100%"
  67.                                    forceSelection="false"
  68.                                    selectedKey="{AgregarJuegos>EnLinea}">
  69.                                     <core:Item key="D" text="{i18n>SelectDisponible}" />
  70.                                     <core:Item key="N" text="{i18n>SelectNoDisponible}" />
  71.                                 </Select>
  72.                             </cells>
  73.                         </ColumnListItem>
  74.                     </items>
  75.                 </Table>
  76.                 <HBox justifyContent="Center" class="sapUiTinyMarginTopBottom">
  77.                     <Button text="{i18n>TablaComp_AddJuego}" press="onAddLineaJuego"/>
  78.                 </HBox>
  79.             </VBox>
  80.         </content>
  81.         <buttons>
  82.             <Button text="{i18n>Cancelar}" press="onCloseDialogJuegos"/>
  83.             <Button text="{i18n>Guardar}" press="onSaveJuegos" type="Emphasized"/>
  84.         </buttons>
  85.     </Dialog>
  86.  
  87. </core:FragmentDefinition>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement