DetailObjectNotFound.view.xml 506 B

12345678910111213141516171819
  1. <mvc:View
  2. controllerName="sap.ui.demo.orderbrowser.controller.DetailObjectNotFound"
  3. xmlns="sap.m"
  4. xmlns:mvc="sap.ui.core.mvc">
  5. <Page
  6. id="page"
  7. title="{i18n>detailTitle}"
  8. showNavButton="{=
  9. ${device>/system/phone} ||
  10. ${device>/system/tablet} &amp;&amp;
  11. ${device>/orientation/portrait}
  12. }"
  13. navButtonPress=".onNavBack">
  14. <IllustratedMessage
  15. title="{i18n>noObjectFoundText}"
  16. illustrationType="sapIllus-BeforeSearch"
  17. enableDefaultTitleAndDescription="false"/>
  18. </Page>
  19. </mvc:View>