二维码

[Fiori] SAP Press - Getting Started with SAPUI5

Twilight发表于 2015-11-04 00:46zhongguomao 最后回复于 2017-08-02 14:02 [复制链接] 4910 1

SAP Press - Getting Started with SAPUI5目录:
  1. Introduction ................................................................................. 13
  2. 1 HTML5 and CSS3 ......................................................... 19
  3. 1.1 Introduction to HTML5 ................................................. 20
  4. 1.1.1 Basic Framework of a Document ...................... 20
  5. 1.1.2 Important Language Elements .......................... 25
  6. 1.2 Introduction to CSS ....................................................... 36
  7. 1.2.1 General Structure ............................................. 36
  8. 1.2.2 Integrating CSS in HTML .................................. 37
  9. 1.2.3 Selectors .......................................................... 41
  10. 1.2.4 Example ........................................................... 44
  11. 2 JavaScript ..................................................................... 47
  12. 2.1 Basic Principles ............................................................. 47
  13. 2.1.1 Logging ............................................................ 48
  14. 2.1.2 Positioning JavaScript Code .............................. 49
  15. 2.1.3 Comments ........................................................ 50
  16. 2.1.4 Functions ......................................................... 50
  17. 2.1.5 Objects ............................................................ 53
  18. 2.2 Variables ....................................................................... 56
  19. 2.3 Operators ..................................................................... 60
  20. 2.3.1 Arithmetic Operators ....................................... 60
  21. 2.3.2 Increment and Decrement Operators ............... 60
  22. 2.3.3 Assignment Operators ...................................... 61
  23. 2.3.4 Relational Operators ........................................ 61
  24. 2.3.5 The typeof Operator ......................................... 62
  25. 2.3.6 Logical Operators ............................................. 62
  26. 2.4 Control Structures: Conditions and Loops ..................... 63
  27. 2.4.1 The if Statement ............................................... 63
  28. 2.4.2 The switch Statement ....................................... 65
  29. 2.4.3 The for Loop .................................................... 67
  30. 2.4.4 The while Loop ................................................ 69
  31. 2.4.5 The do-while Loop ........................................... 71
  32. 2.4.6 The for-in Loop ................................................ 71
  33. 2.5 Document Object Model .............................................. 73
  34. 2.5.1 The DOM Tree ................................................. 74
  35. 2.5.2 Addressing Elements ........................................ 74
  36. 2.5.3 DOM Manipulation .......................................... 76
  37. 2.6 Events ........................................................................... 81
  38. 3 jQuery .......................................................................... 85
  39. 3.1 Basic Principles ............................................................. 85
  40. 3.2 Selectors and Events ..................................................... 86
  41. 3.2.1 Selectors .......................................................... 87
  42. 3.2.2 Events .............................................................. 91
  43. 3.3 DOM Manipulation ...................................................... 93
  44. 3.4 AJAX ............................................................................ 97
  45. 4 Getting Started in SAPUI5 .......................................... 105
  46. 4.1 Installation of the SAPUI5 Library in SAP
  47. Business Suite ............................................................... 106
  48. 4.2 Setting Up the Development Environment .................... 109
  49. 4.2.1 Installation Requirements ................................. 109
  50. 4.2.2 Installation ....................................................... 109
  51. 4.2.3 Updating the Components ............................... 114
  52. 4.3 SAPUI5
  53. 4.3.1 Development in the SAP NetWeaver
  54. Development Scenarios .................................... 116
  55. Application Server ABAP .................................. 117
  56. 4.3.2 Creating Your Own Service ............................... 121
  57. 4.4 Model View Controller Architecture Pattern ................. 125
  58. 4.4.1 Model .............................................................. 126
  59. 4.4.2 View ................................................................ 126
  60. 4.4.3 Controller ......................................................... 127
  61. 4.4.4 Interaction in Web Development ..................... 127
  62. 4.4.5 MVC in SAPUI5 ................................................ 127
  63. 4.5 First Example ................................................................ 131
  64. 5 SAPUI5 Runtime Environment ..................................... 149
  65. 5.1 Initialization of the Application ..................................... 150
  66. 5.1.1 SAPUI5 Resources ............................................ 151
  67. 5.1.2 Controls ........................................................... 154
  68. 5.1.3 SAPUI5 Theming .............................................. 155
  69. 5.2 Data Binding Models .................................................... 160
  70. 5.2.1 JSON Model ..................................................... 162
  71. 5.2.2 XML Model ...................................................... 169
  72. 5.2.3 Resource Model ............................................... 170
  73. 5.2.4 OData Model ................................................... 173
  74. 5.2.5 Binding Options ............................................... 175
  75. 5.3 Multilingual Applications .............................................. 185
  76. 5.4 SAPUI5 Data Typing ...................................................... 191
  77. 5.4.1 Integers ............................................................ 192
  78. 5.4.2 Floating-Point Numbers ................................... 193
  79. 5.4.3 Strings .............................................................. 193
  80. 5.4.4 Boolean Variable .............................................. 194
  81. 5.4.5 Date ................................................................. 195
  82. 5.4.6 Time ................................................................ 196
  83. 5.4.7 Date and Time ................................................. 196
  84. 5.4.8 Formatter Classes ............................................. 196
  85. 5.4.9 Your Own Types ............................................... 196
  86. 5.5 Layout Adaptation via Your Own CSS ............................ 199
  87. 5.5.1 Adapting CSS ................................................... 199
  88. 5.5.2 Theme Designer ............................................... 203
  89. 5.6 Communication with the SAP Backend ......................... 212
  90. 6 SAPUI5 Controls .......................................................... 219
  91. 6.1 API Reference ............................................................... 220
  92. 6.2 Common Controls (sap.ui.commons) ............................. 224
  93. 6.2.1 Layout .............................................................. 225
  94. 6.2.2 UI Controls ....................................................... 253
  95. 6.3 UX3 Controls (sap.ui.ux3) ............................................. 273
  96. 6.4 Table Control (sap.ui.table) ........................................... 275
  97. 6.5 Charts (sap.viz) ............................................................. 275
  98. 6.6 Controls for Mobile Applications .................................. 276
  99. 6.7 Suite Controls (sap.suite.) ............................................. 276
  100. 6.8 Your Own Controls ....................................................... 278
  101. 7 Development Example of an Application .................... 283
  102. 7.1 The UI Design ............................................................... 283
  103. 7.1.1 Start Page ......................................................... 284
  104. 7.1.2 Time Sheet ....................................................... 285
  105. 7.1.3 Leave Request .................................................. 286
  106. 7.1.4 Employee Directory .......................................... 287
  107. 7.1.5 Travel Planning ................................................. 287
  108. 7.1.6 My Data ........................................................... 288
  109. 7.2 Implementation ............................................................ 289
  110. 7.2.1 Basic Structure ................................................. 290
  111. 7.2.2 Employee Directory .......................................... 296
  112. 7.2.3 Travel Planning ................................................. 302
  113. 7.2.4 My Data ........................................................... 308
  114. 7.2.5 Tasks ................................................................ 314
  115. 7.2.6 Time Sheet ....................................................... 324
  116. 7.2.7 Leave Request .................................................. 340
  117. 8 SAP Gateway ............................................................... 353
  118. 8.1 Basic Principles of SAP Gateway .................................... 353
  119. 8.2 Installation .................................................................... 355
  120. 8.3 Con guration ................................................................ 356
  121. 8.4 Implementing OData Service ........................................ 358
  122. 8.5 Consuming OData Service ............................................. 375
  123. 9 SAP HANA .................................................................... 381
  124. 9.1 XS Engine ..................................................................... 382
  125. 9.2 HANA Access ................................................................ 383
  126. 9.3 Implementation of the Sample Application ................... 389
  127. 10 Mobile Applications ..................................................... 405
  128. 10.1 Installation .................................................................... 407
  129. 10.2 Introduction to SAPUI5 for Mobile ............................... 408
  130. 10.3 Developing Mobile Solutions with SAPUI5 ................... 409
  131. 10.3.1 Page Layout of Mobile Applications ................. 409
  132. 10.3.2 Page Navigation ............................................... 414
  133. 10.3.3 Where Am I? .................................................... 417
  134. 10.3.4 SplitApp Control .............................................. 418
  135. 10.3.5 Events on Mobile Devices ................................ 419
  136. 10.4 Application Example ..................................................... 420
  137. 10.4.1 Backend Implementation ................................. 420
  138. 10.4.2 Frontend Implementation ................................ 428
  139. Appendices ........................................................................ 451
  140. A Further Sources of Information ............................................... 451
复制代码

购买主题 已有 1 人购买  本主题需向作者支付 20 枚金币 才能浏览
回复

使用道具 举报

zhongguomao
本帖最后由 zhongguomao 于 2017-11-18 10:51 编辑

求分享此文档!
回复 支持 反对

使用道具 举报

快速回帖

本版积分规则
您需要登录后才可以回帖 登录 | 注册有礼

快速回复 返回顶部 返回列表