‎2018 Jul 04 9:15 PM
As the title I started from two days to work in SAP and for now I'm starting with javascript (no ABAP) .... is there any complete guide that shows me all the necessary knowledge? For now I'm seeing from here .....
https://sapui5.hana.ondemand.com/#/api/sap.m.QuickView/controlProperties
This is the beginning
<mvc:View controllerName="esercizio3.controller.Tabella" xmlns:html="http://www.w3.org/1999/xhtml" xmlns:mvc="sap.ui.core.mvc"
displayBlock="true" xmlns="sap.m">
<App>
<pages>
<Page title="{i18n>title}">
<content>
<IconTabBar id="onPress">
<items>
<IconTabFilter icon="sap-icon://action">
<Text text=" Immettere qui le info "/>
</IconTabFilter>
<IconTabFilter text="allegati" count="33" icon="sap-icon://attachment">
<Text text="Per gli allegati cliccare qui"/>
</IconTabFilter>
<IconTabFilter text="note" count="24" icon="sap-icon://notes">
<Text text="Per le note cliccare qui "/>
</IconTabFilter>
<IconTabFilter text="gruppi" count="12" icon="sap-icon://group">
<Text text="Il contenuto va qui .... "/>
</IconTabFilter>
</items>
</IconTabBar>
</content>
</Page>
</pages>
</App>
</mvc:View>
‎2018 Jul 19 7:06 PM
there isn't an all knowledge 🙂 but you can check several places:
1) open.sap.com --> there are a few free courses to get up to speed
2) help.sap.com --> look for official documentation
3) scn.sap.com --> search for blogs and Q&A
4) sap cloud platform - you can use this for your own learning
5) developer guide + other javascript online sources ... including but not limited to JavaScript Scope, Syntax, MVC, .....
good luck and welcome to ui5 development
‎2018 Jul 20 2:40 PM