@ind-rcg/modeler-sfdx-cli-plugin 246.1042.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (239) hide show
  1. package/LICENSE.md +37 -0
  2. package/README.md +756 -0
  3. package/lib/commands/modeler/workspace/add.js +1 -0
  4. package/lib/commands/modeler/workspace/build.js +1 -0
  5. package/lib/commands/modeler/workspace/cleanup.js +1 -0
  6. package/lib/commands/modeler/workspace/create.js +1 -0
  7. package/lib/commands/modeler/workspace/package.js +1 -0
  8. package/lib/commands/modeler/workspace/refreshLocale.js +1 -0
  9. package/lib/commands/modeler/workspace/server/start.js +1 -0
  10. package/lib/commands/modeler/workspace/upgrade.js +1 -0
  11. package/lib/commands/modeler/workspace/utils/base64encode.js +1 -0
  12. package/lib/commands/modeler/workspace/utils/generateManifest.js +1 -0
  13. package/lib/commands/modeler/workspace/utils/migrateContracts.js +1 -0
  14. package/lib/commands/modeler/workspace/validate.js +1 -0
  15. package/lib/constants.js +1 -0
  16. package/lib/hooks/init/updateCheck.js +1 -0
  17. package/lib/model/buildStatus.js +1 -0
  18. package/lib/model/workspace.js +1 -0
  19. package/lib/model/workspaceCommand.js +1 -0
  20. package/lib/shared/commandBuilder.js +1 -0
  21. package/lib/shared/commandExecutor.js +1 -0
  22. package/lib/shared/commandOutput.js +1 -0
  23. package/lib/types/config.js +1 -0
  24. package/lib/types/errors.js +1 -0
  25. package/lib/types/messages.js +1 -0
  26. package/lib/types/package.js +1 -0
  27. package/lib/types/results.js +1 -0
  28. package/lib/utils/componentHelper.js +1 -0
  29. package/lib/utils/errorHelper.js +1 -0
  30. package/lib/utils/fsHelper.js +1 -0
  31. package/lib/utils/generateManifestHelper.js +1 -0
  32. package/lib/utils/messageHelper.js +1 -0
  33. package/lib/utils/packageHelper.js +1 -0
  34. package/lib/utils/serverHelper.js +1 -0
  35. package/lib/utils/templateEngine.js +1 -0
  36. package/lib/utils/templateHelper.js +1 -0
  37. package/lib/utils/updateChecker.js +1 -0
  38. package/lib/utils/validationHelper.js +1 -0
  39. package/messages/modeler-workspace-add.md +45 -0
  40. package/messages/modeler-workspace-build.md +29 -0
  41. package/messages/modeler-workspace-cleanup.md +17 -0
  42. package/messages/modeler-workspace-create.md +21 -0
  43. package/messages/modeler-workspace-package.md +21 -0
  44. package/messages/modeler-workspace-refresh-locale.md +27 -0
  45. package/messages/modeler-workspace-server-start.md +37 -0
  46. package/messages/modeler-workspace-upgrade.md +21 -0
  47. package/messages/modeler-workspace-utils-base64encode.md +25 -0
  48. package/messages/modeler-workspace-utils-generateManifest.md +15 -0
  49. package/messages/modeler-workspace-utils-migrateContracts.md +23 -0
  50. package/messages/modeler-workspace-validate.md +29 -0
  51. package/messages/modeler-workspace.md +19 -0
  52. package/oclif.manifest.json +429 -0
  53. package/package.json +108 -0
  54. package/templates/.gitignore.tmp +4 -0
  55. package/templates/README.md.tmp +77 -0
  56. package/templates/contractTemplates/#ModuleName#/BO/README.md +1 -0
  57. package/templates/contractTemplates/#ModuleName#/DS/README.md +1 -0
  58. package/templates/contractTemplates/#ModuleName#/PL/README.md +1 -0
  59. package/templates/contractTemplates/#ModuleName#/PR/README.md +1 -0
  60. package/templates/contractTemplates/#ModuleName#/TB/README.md +1 -0
  61. package/templates/contractTemplates/BO_BusinessObject/businessobject/Bo${NAME}/Bo${NAME}.businessobject.xml +22 -0
  62. package/templates/contractTemplates/BO_BusinessObject/businessobject/Bo${NAME}/Mv2/CreateAsync/Bo${NAME}.AfterCreateAsync.bl.js +54 -0
  63. package/templates/contractTemplates/BO_BusinessObject/businessobject/Bo${NAME}/Mv2/CreateAsync/Bo${NAME}.BeforeCreateAsync.bl.js +56 -0
  64. package/templates/contractTemplates/BO_BusinessObject/businessobject/Bo${NAME}/Mv2/DoValidateAsync/Bo${NAME}.AfterDoValidateAsync.bl.js +57 -0
  65. package/templates/contractTemplates/BO_BusinessObject/businessobject/Bo${NAME}/Mv2/DoValidateAsync/Bo${NAME}.BeforeDoValidateAsync.bl.js +56 -0
  66. package/templates/contractTemplates/BO_BusinessObject/businessobject/Bo${NAME}/Mv2/Initialize/Bo${NAME}.AfterInitialize.bl.js +54 -0
  67. package/templates/contractTemplates/BO_BusinessObject/businessobject/Bo${NAME}/Mv2/Initialize/Bo${NAME}.BeforeInitialize.bl.js +54 -0
  68. package/templates/contractTemplates/BO_BusinessObject/businessobject/Bo${NAME}/Mv2/LoadAsync/Bo${NAME}.AfterLoadAsync.bl.js +57 -0
  69. package/templates/contractTemplates/BO_BusinessObject/businessobject/Bo${NAME}/Mv2/LoadAsync/Bo${NAME}.BeforeLoadAsync.bl.js +56 -0
  70. package/templates/contractTemplates/BO_BusinessObject/businessobject/Bo${NAME}/Mv2/SaveAsync/Bo${NAME}.AfterSaveAsync.bl.js +57 -0
  71. package/templates/contractTemplates/BO_BusinessObject/businessobject/Bo${NAME}/Mv2/SaveAsync/Bo${NAME}.BeforeSaveAsync.bl.js +56 -0
  72. package/templates/contractTemplates/BO_BusinessObject/businessobject/BusinessObject.md +186 -0
  73. package/templates/contractTemplates/BO_BusinessObject/businessobject/snippets/BusinessObjectListObjectsListObjectEventsSnipp.xml +3 -0
  74. package/templates/contractTemplates/BO_BusinessObject/businessobject/snippets/BusinessObjectListObjectsListObjectSnipp.xml +1 -0
  75. package/templates/contractTemplates/BO_BusinessObject/businessobject/snippets/BusinessObjectNestedObjectsNestedObjectSnipp.xml +1 -0
  76. package/templates/contractTemplates/BO_BusinessObject/businessobject/snippets/BusinessObjectObjectLookupsObjectLookupEventsSnipp.xml +3 -0
  77. package/templates/contractTemplates/BO_BusinessObject/businessobject/snippets/BusinessObjectObjectLookupsObjectLookupSnipp.xml +1 -0
  78. package/templates/contractTemplates/BO_BusinessObject/businessobject/snippets/BusinessObjectSimplePropertiesSimplePropertyEventsSnipp.xml +3 -0
  79. package/templates/contractTemplates/BO_BusinessObject/businessobject/snippets/BusinessObjectSimplePropertiesSimplePropertySnipp.xml +1 -0
  80. package/templates/contractTemplates/BO_BusinessObject/businessobjecthelper/snippets/BusinessObjectHelperSimplePropertiesSimplePropertySnipp.xml +1 -0
  81. package/templates/contractTemplates/BO_BusinessObject/validationmessages/ValidationMessage.md +38 -0
  82. package/templates/contractTemplates/BO_BusinessObject/validationmessages/snippets/ValidationMessagesValidationMessageSnipp.xml +1 -0
  83. package/templates/contractTemplates/DS_DataSource/DataSource.md +319 -0
  84. package/templates/contractTemplates/DS_DataSource/Ds${NAME}_sf.datasource.xml +11 -0
  85. package/templates/contractTemplates/DS_DataSource/snippets/DataSourceAttributesAttributeSnipp.xml +1 -0
  86. package/templates/contractTemplates/DS_DataSource/snippets/DataSourceAttributesDerivedAttributeSnipp.xml +1 -0
  87. package/templates/contractTemplates/DS_DataSource/snippets/DataSourceEntitiesEntityJoinSimpleJoinConditionAttributeSnipp.xml +1 -0
  88. package/templates/contractTemplates/DS_DataSource/snippets/DataSourceEntitiesEntityJoinSimpleJoinConditionLiteralSnipp.xml +1 -0
  89. package/templates/contractTemplates/DS_DataSource/snippets/DataSourceEntitiesEntitySnipp.xml +1 -0
  90. package/templates/contractTemplates/ExternalFiles/#Name#.externalfile.xml +6 -0
  91. package/templates/contractTemplates/LO_ListObject/Lo${NAME}/Li${NAME}.listitem.xml +5 -0
  92. package/templates/contractTemplates/LO_ListObject/Lo${NAME}/ListItem.md +114 -0
  93. package/templates/contractTemplates/LO_ListObject/Lo${NAME}/ListObject.md +354 -0
  94. package/templates/contractTemplates/LO_ListObject/Lo${NAME}/Lo${NAME}.listobject.xml +12 -0
  95. package/templates/contractTemplates/LO_ListObject/Lo${NAME}/Mv2/DoValidateAsync/Lo${NAME}.AfterDoValidateAsync.bl.js +57 -0
  96. package/templates/contractTemplates/LO_ListObject/Lo${NAME}/Mv2/DoValidateAsync/Lo${NAME}.BeforeDoValidateAsync.bl.js +56 -0
  97. package/templates/contractTemplates/LO_ListObject/Lo${NAME}/Mv2/LoadAsync/Lo${NAME}.AfterLoadAsync.bl.js +57 -0
  98. package/templates/contractTemplates/LO_ListObject/Lo${NAME}/Mv2/LoadAsync/Lo${NAME}.BeforeLoadAsync.bl.js +56 -0
  99. package/templates/contractTemplates/LO_ListObject/Lo${NAME}/Mv2/SaveAsync/Lo${NAME}.AfterSaveAsync.bl.js +57 -0
  100. package/templates/contractTemplates/LO_ListObject/Lo${NAME}/Mv2/SaveAsync/Lo${NAME}.BeforeSaveAsync.bl.js +56 -0
  101. package/templates/contractTemplates/LO_ListObject/snippets/ListItemSimplePropertiesSimplepropertySnipp.xml +1 -0
  102. package/templates/contractTemplates/LU_LookupObject/Lu${NAME}/LookupObject.md +97 -0
  103. package/templates/contractTemplates/LU_LookupObject/Lu${NAME}/Lu${NAME}.lookupobject.xml +12 -0
  104. package/templates/contractTemplates/LU_LookupObject/Lu${NAME}/Mv2/LoadAsync/Lu${NAME}.AfterLoadAsync.bl.js +57 -0
  105. package/templates/contractTemplates/LU_LookupObject/Lu${NAME}/Mv2/LoadAsync/Lu${NAME}.BeforeLoadAsync.bl.js +56 -0
  106. package/templates/contractTemplates/LU_LookupObject/snippets/LookupObjectSimplePropertiesSimplePropertySnipp.xml +1 -0
  107. package/templates/contractTemplates/PL_PrintLayout/#Name#PDF/#Name#PDF.printlayoutv2.xml +4 -0
  108. package/templates/contractTemplates/PR_Process_&_UI/#ModuleName#_#Name#/#ModuleName#_#Name#.userinterface.xml +4 -0
  109. package/templates/contractTemplates/PR_Process_&_UI/#ModuleName#_#Name#/#ModuleName#_#Name#Process.processflow.xml +12 -0
  110. package/templates/contractTemplates/PR_Process_&_UI/Process.md +790 -0
  111. package/templates/contractTemplates/PR_Process_&_UI/UserInterface.md +1545 -0
  112. package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionConfirmSnipp.xml +6 -0
  113. package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionCreateSnipp.xml +7 -0
  114. package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionDecisionSnipp.xml +5 -0
  115. package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionEndSnipp.xml +5 -0
  116. package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionLoadSnipp.xml +7 -0
  117. package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionLogicSnipp.xml +7 -0
  118. package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionMasterDetailSnipp.xml +24 -0
  119. package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionNavigationSnipp.xml +8 -0
  120. package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionPrintSnipp.xml +6 -0
  121. package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionPrintV2Snipp.xml +6 -0
  122. package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionProcessSnipp.xml +9 -0
  123. package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionValidationSnipp.xml +6 -0
  124. package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionViewSnipp.xml +6 -0
  125. package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessEntryEntryActionsActionCreateSnipp.xml +6 -0
  126. package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessEntryEntryActionsActionLoadSnipp.xml +6 -0
  127. package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessEntryEntryActionsActionLogicSnipp.xml +6 -0
  128. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Attachment/AttachmentFolderInfoSectionSnipp.xml +6 -0
  129. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Attachment/AttachmentFolderSnipp.xml +24 -0
  130. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Banner/BannerFilterSnipp.xml +19 -0
  131. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Banner/Banner_WithFilterSnipp.xml +25 -0
  132. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Banner/Banner_WithoutFilterSnipp.xml +6 -0
  133. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BindingList/BindingsList_DecisionsSnipp.xml +9 -0
  134. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BindingList/BindingsList_GroupsSnipp.xml +11 -0
  135. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BindingList/BindingsList_ResultsSnipp.xml +13 -0
  136. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlEventsSnipp.xml +6 -0
  137. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlHierarchyBindingsBindingAddItemSnipp.xml +1 -0
  138. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlHierarchyBindingsBindingCategoriesSnipp.xml +1 -0
  139. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlHierarchyBindingsBindingShowCategorySnipp.xml +1 -0
  140. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlHierarchyDataSourcesSnipp.xml +3 -0
  141. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsBindingsBindingButtonSnipp.xml +1 -0
  142. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsBindingsBindingComboSnipp.xml +1 -0
  143. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsBindingsBindingDateSnipp.xml +1 -0
  144. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsBindingsBindingDecimalSnipp.xml +1 -0
  145. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsBindingsBindingDynamicSnipp.xml +1 -0
  146. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsBindingsBindingImageSnipp.xml +1 -0
  147. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsBindingsBindingStepperSnipp.xml +1 -0
  148. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsBindingsBindingStepper_CorrelationIdSnipp.xml +1 -0
  149. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsBindingsBindingTextSnipp.xml +1 -0
  150. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsBindingsResourceImageSnipp.xml +1 -0
  151. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsBindingsResourceLabelSnipp.xml +1 -0
  152. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsContextMenuSnipp.xml +13 -0
  153. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlSearchAttributesSnipp.xml +3 -0
  154. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlSnipp.xml +22 -0
  155. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/MultiSelectionBreadCrumbControlSnipp.xml +23 -0
  156. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Calendar/CalendarControlEventsSnipp.xml +11 -0
  157. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Calendar/CalendarControlItemsBindingsBindingDateSnipp.xml +1 -0
  158. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Calendar/CalendarControlItemsBindingsBindingDecimalSnipp.xml +1 -0
  159. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Calendar/CalendarControlItemsBindingsBindingImageSnipp.xml +1 -0
  160. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Calendar/CalendarControlItemsBindingsBindingLabelSnipp.xml +1 -0
  161. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Calendar/CalendarControlItemsBindingsBindingTextSnipp.xml +1 -0
  162. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Calendar/CalendarControlSettingsSnipp.xml +1 -0
  163. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Calendar/CalendarControlSnipp.xml +8 -0
  164. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/CheckBox/CheckBoxEventsSnipp.xml +3 -0
  165. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/CheckBox/CheckBoxSnipp.xml +6 -0
  166. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Cockpit/CockpitSectionsSnipp.xml +7 -0
  167. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/DataImportWizard/DataImportWizardSnipp.xml +12 -0
  168. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/DatePicker/DatePickerFieldSnipp.xml +6 -0
  169. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/EmbededList/EmbeddedListSnipp.xml +8 -0
  170. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/EnhanceDecisionList/EnhancedDecisionListSnipp.xml +52 -0
  171. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/FastEntry/FastDataEntryGridSnipp.xml +69 -0
  172. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/GoogleMaps/GoogleMapDetailsSnipp.xml +20 -0
  173. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/GoogleMaps/GoogleMapSnipp.xml +7 -0
  174. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/GroupElement/GroupElementSnipp.xml +5 -0
  175. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/GroupedButtonList/GroupedButtonListEventsSnipp.xml +5 -0
  176. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/GroupedButtonList/GroupedButtonListFooterSnipp.xml +8 -0
  177. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/GroupedButtonList/GroupedButtonListSnipp.xml +8 -0
  178. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/GroupedList/GroupedListEventsSnipp.xml +7 -0
  179. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/GroupedList/GroupedListSnipp.xml +5 -0
  180. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/GroupedList/MultiSelectionGroupedListEventsSnipp.xml +7 -0
  181. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/GroupedList/MultiSelectionGroupedListSnipp.xml +6 -0
  182. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/ImageButton/ImageButtonSnipp.xml +10 -0
  183. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/ImageSelector/ImageSelectorSnipp.xml +16 -0
  184. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/InputArea/InputAreaMultiLineSnipp.xml +6 -0
  185. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/InputArea/InputAreaSnipp.xml +6 -0
  186. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/ItemListLayout/ItemListLayout_ComplexSnipp.xml +13 -0
  187. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/ItemListLayout/ItemListLayout_GridSnipp.xml +10 -0
  188. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/ItemListLayout/ItemListLayout_TwoRowsSnipp.xml +8 -0
  189. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/LinkBar/LinkBarSnipp.xml +12 -0
  190. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Lookup/LookupEventSnipp.xml +3 -0
  191. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Lookup/LookupSnipp.xml +6 -0
  192. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/MediaControl/MediaControlSnipp.xml +7 -0
  193. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/MediaListControl/MediaListControlBindingsBindingDescriptionSnipp.xml +1 -0
  194. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/MediaListControl/MediaListControlBindingsBindingIsTaggedSnipp.xml +1 -0
  195. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/MediaListControl/MediaListControlBindingsBindingMediaPathSnipp.xml +1 -0
  196. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/MediaListControl/MediaListControlBindingsBindingTypeSnipp.xml +1 -0
  197. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/MediaListControl/MediaListControlEventsSnipp.xml +4 -0
  198. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/MediaListControl/MediaListControlSnipp.xml +8 -0
  199. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Menu/LongPressMenuSnipp.xml +8 -0
  200. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Menu/MenuItemSnipp.xml +9 -0
  201. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Merger/MergerOneInputControlTwoButtonsMaxSnipp.xml +2 -0
  202. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Merger/MergerTwoInputControlsCombinedSnipp.xml +2 -0
  203. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Merger/MergerTwoInputControlsNoneSnipp.xml +2 -0
  204. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Merger/MergerTwoInputControlsOwnSnipp.xml +5 -0
  205. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/NoDataMessageSnipp.xml +9 -0
  206. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Page/MasterDetail/Page_MasterDetail_WithDetailGroupsSnipp.xml +43 -0
  207. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Page/MasterDetail/Page_MasterDetail_WithDetailListSnipp.xml +44 -0
  208. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Page/MasterDetail/Page_MasterDetail_WithDetailTabsSnipp.xml +61 -0
  209. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Page/MasterDetail/Page_MasterDetail_WithExtendedDetailSnipp.xml +44 -0
  210. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Page/SingleSection/Page_SingleSectionScreens_GroupedElementsSnipp.xml +33 -0
  211. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Page/SingleSection/Page_SingleSectionScreens_ListSnipp.xml +41 -0
  212. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Page/SingleSection/Page_SingleSectionScreens_TabSnipp.xml +39 -0
  213. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Page/SingleSection/Page_SingleSectionScreens_WizardSnipp.xml +34 -0
  214. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Page/SplitScreen/Page_SplitScreenSnipp.xml +27 -0
  215. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/SelectionBox/SelectionBoxBindingSnipp.xml +13 -0
  216. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/SelectionBox/SelectionBoxEventsSnipp.xml +4 -0
  217. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/SelectionBox/SelectionBoxToggleSnipp.xml +13 -0
  218. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/SignatureControl/SignatureControlBindingsBindingEditableParametersSnipp.xml +3 -0
  219. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/SignatureControl/SignatureControlBindingsBindingEditableSnipp.xml +1 -0
  220. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/SignatureControl/SignatureControlBindingsBindingVisibleParametersSnipp.xml +3 -0
  221. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/SignatureControl/SignatureControlBindingsBindingVisibleSnipp.xml +1 -0
  222. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/SignatureControl/SignatureControlEditabilityRolesSnipp.xml +3 -0
  223. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/SignatureControl/SignatureControlSnipp.xml +6 -0
  224. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/SignatureControl/SignatureControlVisibilityRolesSnipp.xml +3 -0
  225. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Stepper/StepperSnipp.xml +7 -0
  226. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/TextBar/TextBarSnipp.xml +7 -0
  227. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/ThemeSelection/ThemeSelectionSnipp.xml +5 -0
  228. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/TimePicker/TimePickerFieldSnipp.xml +6 -0
  229. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/UserWelcomeSnipp.xml +24 -0
  230. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/VisitDetailsSnipp.xml +21 -0
  231. package/templates/contractTemplates/TB_Table/#Name#_T.temptable.xml +11 -0
  232. package/templates/contractTemplates/TB_Table/snippets/#Name#.dbtable.xml +10 -0
  233. package/templates/contractTemplates/TB_Table/snippets/dbtable/DBTablecolumnscolumnSnipp.xml +1 -0
  234. package/templates/contractTemplates/TB_Table/snippets/dbtable/DBTableindexesindexSnipp.xml +3 -0
  235. package/templates/contractTemplates/TB_Table/snippets/temptable/TempTableColumnsColumnIsDeletedSnipp.xml +1 -0
  236. package/templates/contractTemplates/TB_Table/snippets/temptable/TempTableColumnsColumnSnipp.xml +1 -0
  237. package/templates/contractTemplates/TB_Table/snippets/temptable/TempTableindexesindexSnipp.xml +3 -0
  238. package/templates/contractTemplates/UI_Plugins/#Name#UiPluginV2.uipluginv2.xml +16 -0
  239. package/templates/templateDefinitions.json +167 -0
@@ -0,0 +1,69 @@
1
+ <FastDataEntryGrid name="${#Name#}FastDataEntryGrid">
2
+ <DataInputArea name="${#Name#}InputArea">
3
+ <DataSearchField name="${#Name#}SearchField" dataSource="${#SearchLO#}">
4
+ <Items>
5
+ <Bindings>
6
+ <Binding target="PKey" type="Text" binding=".pKey" bindingMode="ONE_WAY"/>
7
+ <Binding target="Searchable1" type="Text" binding="${#searchable1Binding#}" bindingMode="ONE_WAY"/>
8
+ <Binding target="SearchResultDisplay1" type="Text" binding="${#Display1Binding#}" bindingMode="ONE_WAY"/>
9
+ <!-- the Possible Bindings are: -->
10
+ <!-- PKey -->
11
+ <!-- Searchable1 - Searchable4 -->
12
+ <!-- SearchResultDisplay1 - SearchResultDisplay2 -->
13
+ </Bindings>
14
+ </Items>
15
+ <Bindings>
16
+ <Resource target="Label" type="Label" defaultLabel="You can search for [b]ProductNumber[/b]." id="SearchBoxId"/>
17
+ </Bindings>
18
+ </DataSearchField>
19
+ <NumberInputField name="quantityInputField" format="5.0">
20
+ <Bindings>
21
+ <Resource target="Label" type="Label" defaultLabel="Quantity" id="Quantityid"/>
22
+ </Bindings>
23
+ </NumberInputField>
24
+ <!-- Two numberInutFields can be specified -->
25
+ <Events>
26
+ <CreateNewRecordEvent event="newLoItem">
27
+ <!-- the CreateNewRecordEvent has as implicit parameters the values of the search and input field. Key is the name property -->
28
+ <!-- Additionally all properties of the selected LI can be bound by BL -->
29
+ <Params/>
30
+ </CreateNewRecordEvent>
31
+ </Events>
32
+ </DataInputArea>
33
+ <DataGrid name="${#Name#}DataGrid" dataSource="${#GridDataSource#}">
34
+ <Bindings>
35
+ <Resource target="EmptyImage" type="Image" id="GridEmptyImageId" defaultImage=""/>
36
+ <Resource target="EmptyMessage" type="Label" id="GridEmptyMessageId" defaultLabel="No items"/>
37
+ </Bindings>
38
+ <Items>
39
+ <Bindings>
40
+ <Binding target="PKey" type="Text" binding=".pKey" bindingMode="ONE_WAY"/>
41
+ <Binding target="Binding1" type="Text" binding="${#Binding1#}" bindingMode="ONE_WAY"/>
42
+ </Bindings>
43
+ <GridLayout>
44
+ <Default>
45
+ <Header>
46
+ <Col bindingId="header1" align="left"/>
47
+ </Header>
48
+ <Col width="50%" layoutType="Text" bindingId="Binding1"/>
49
+ </Default>
50
+ <!--Tablet>
51
+ <Apple>
52
+ </Apple>
53
+ <Android>
54
+ </Android>
55
+ </Tablet>
56
+ <Phone>
57
+ </Phone-->
58
+ </GridLayout>
59
+ </Items>
60
+ <Events>
61
+ <DeleteRecordEvent event="dataDeleted">
62
+ <Params>
63
+ <!-- the customizer can reference all properties of the LI the grid row is based on -->
64
+ <Param name="pKey" value=".pKey"/>
65
+ </Params>
66
+ </DeleteRecordEvent>
67
+ </Events>
68
+ </DataGrid>
69
+ </FastDataEntryGrid>
@@ -0,0 +1,20 @@
1
+ <GoogleMapDetails name="${#name#}">
2
+ <Bindings>
3
+ <Binding target="Visible" type="Boolean" binding="${#binding#}" bindingMode="TWO_WAY"/>
4
+ </Bindings>
5
+ <CockpitSections name="${#cockpitName#}">
6
+ <CockpitSection name="${#sectionName#}" sectionPattern="2columns" showSeparator="true">
7
+ <Bindings>
8
+ <Binding target="col1row1" type="ItemIdentifier" binding="${#col1row1Binding#}"/>
9
+ </Bindings>
10
+ </CockpitSection>
11
+ </CockpitSections>
12
+ <ActionBar>
13
+ <ImageButton>
14
+ <Bindings>
15
+ <Resource target="Image" type="Image" id="${#imageId#}"/>
16
+ <Resource target="Text" type="Label" id="${#labelId#}" defaultLabel="${#label#}"/>
17
+ </Bindings>
18
+ </ImageButton>
19
+ </ActionBar>
20
+ </GoogleMapDetails>
@@ -0,0 +1,7 @@
1
+ <GoogleMap name="${#name#}" dataSource="${#dataSource#}" latitudeField="${#latitudeField#}" longitudeField="${#longitudeField#}" idField="${#idField#}" toolTipField="${#toolTipField#}" initialZoomLevel="${#initialZoomLevel#}">
2
+ <Bindings>
3
+ <Binding binding="${#binding1#}" target="DisplayRoute" bindingMode="ONE_WAY" />
4
+ <Binding binding="${#binding2#}" target="DisplayTraffic" bindingMode="ONE_WAY" />
5
+ <Binding binding="${#binding3#}" target="DisplayAdditionalDatasource" bindingMode="ONE_WAY" />
6
+ </Bindings>
7
+ </GoogleMap>
@@ -0,0 +1,5 @@
1
+ <GroupElement name="${#name#}">
2
+ <Bindings>
3
+ <Resource target="Title" type="Label" id="${#id#}Id" defaultLabel="${#defaultLabel#}" />
4
+ </Bindings>
5
+ </GroupElement>
@@ -0,0 +1,5 @@
1
+ <Events>
2
+ <ItemSelectedEvent event="${#ise#}" />
3
+ <ContextOpeningEvent event="${#coe#}" />
4
+ <ContextSelectedEvent event="${#cse#}" />
5
+ </Events>
@@ -0,0 +1,8 @@
1
+ <Footer>
2
+ <Items name="FooterItems">
3
+ <Bindings>
4
+ <Resource target="Icon" type="Image" id="${#id1#}" />
5
+ <Resource target="FooterLabel" type="Label" id="${#id#}Id" defaultLabel="${#defaultLabel#}" />
6
+ </Bindings>
7
+ </Items>
8
+ </Footer>
@@ -0,0 +1,8 @@
1
+ <GroupedButtonList name="${#name#}" dataSource="${#dataSource#}" searchable="${#searchable#}" groupBy="${#groupBy#}" sortBy="${#sortBy#}" hasBorder="${#hasBorder#}">
2
+ <Bindings>
3
+ <Resource target="Title" type="Label" defaultLabel="${#defaultLabel#}" id="${#id#}Id" />
4
+ </Bindings>
5
+ <Items name="Items" itemPattern="${#itemPattern#}">
6
+ <ItemListLayout />
7
+ </Items>
8
+ </GroupedButtonList>
@@ -0,0 +1,7 @@
1
+ <Events>
2
+ <ItemSelectedEvent event="${#ise#}" />
3
+ <ContextOpeningEvent event="${#coe#}" />
4
+ <ContextSelectedEvent event="${#cse#}" />
5
+ <SwipeEvent event="${#se#}" />
6
+ <ListButtonPressedEvent event="${#lbpe#}" />
7
+ </Events>
@@ -0,0 +1,5 @@
1
+ <GroupedList name="${#name#}" searchable="${#searchable#}" groupBy="${#groupBy#}" sortBy="${#sortBy#}" master="${#master#}" dataSource="${#dataSource#}" direction="${#direction#}" indexBar="${#indexBar#}" swipe="${#swipe#}" hasBorder="${#hasBorder#}" onItemDisclosure="${#onItemDisclosure#}">
2
+ <Items name="Items" itemPattern="${#itemPattern#}">
3
+ <ItemListLayout />
4
+ </Items>
5
+ </GroupedList>
@@ -0,0 +1,7 @@
1
+ <Events>
2
+ <ItemSelectedEvent event="${#ise#}"/>
3
+ <ContextOpeningEvent event="${#coe#}"/>
4
+ <ContextSelectedEvent event="${#cse#}"/>
5
+ <SwipeEvent event="${#se#}"/>
6
+ <ListButtonPressedEvent event="${#lbpe#}" />
7
+ </Events>
@@ -0,0 +1,6 @@
1
+ <MultiSelectionGroupedList name="${#name#}" searchable="${#searchable#}" groupBy="${#groupBy#}" sortBy="${#sortBy#}" master="${#master#}" dataSource="${#dataSource#}" direction="${#direction#}" indexBar="${#indexBar#}" swipe="${#swipe#}" hasBorder="${#hasBorder#}" onItemDisclosure="${#onItemDisclosure#}">
2
+ <Items name="Items" itemPattern="${#itemPattern#}">
3
+ <ItemListLayout />
4
+ </Items>
5
+ <GroupVisibleElementConfiguration />
6
+ </MultiSelectionGroupedList>
@@ -0,0 +1,10 @@
1
+ <ImageButton name="${#name#}" backendSystem="both">
2
+ <Bindings>
3
+ <Resource target="Image" type="Image" id="${#id1#}" />
4
+ <Resource target="Text" type="Label" id="${#id#}Id" defaultLabel="${#defaultLabel#}" />
5
+ <Binding target="Info" binding="${#binding#}" bindingMode="ONE_WAY" />
6
+ </Bindings>
7
+ <Events>
8
+ <ButtonPressedEvent event="${#event#}Pressed" />
9
+ </Events>
10
+ </ImageButton>
@@ -0,0 +1,16 @@
1
+ <ImageSelector name="${#name#}" type="FilterElement" dataSource="${#dataSource#}">
2
+ <Items>
3
+ <Bindings>
4
+ <Binding target="Image" type="Image" binding="${#binding1#}" bindingMode="ONE_WAY" />
5
+ <Binding target="Text" type="Text" binding="${#binding2#}" bindingMode="ONE_WAY" />
6
+ <Binding target="Info" type="Text" binding="${#binding3#}" bindingMode="ONE_WAY" />
7
+ </Bindings>
8
+ </Items>
9
+ <Events>
10
+ <ItemSelectedEvent event="filterSelected">
11
+ <Params>
12
+ <Param name="filterCode" value="${#value#}" />
13
+ </Params>
14
+ </ItemSelectedEvent>
15
+ </Events>
16
+ </ImageSelector>
@@ -0,0 +1,6 @@
1
+ <InputAreaMultiLine name="${#name#}" height="${#height1#}">
2
+ <Bindings>
3
+ <Resource target="Label" type="Label" defaultLabel="${#defaultLabel#}" id="${#id#}Id" height="${#height2#}" />
4
+ <Binding target="Value" type="${#type#}" binding="${#binding#}" bindingMode="TWO_WAY" />
5
+ </Bindings>
6
+ </InputAreaMultiLine>
@@ -0,0 +1,6 @@
1
+ <InputArea name="${#name#}">
2
+ <Bindings>
3
+ <Resource target="Label" type="Label" defaultLabel="${#defaultLabel#}" id="${#id#}Id" />
4
+ <Binding target="Value" type="${#type#}" binding="${#binding#}" bindingMode="TWO_WAY" />
5
+ </Bindings>
6
+ </InputArea>
@@ -0,0 +1,13 @@
1
+ <ItemListLayout>
2
+ <Default>
3
+ <Col width="1.5em" height="1.4em" layoutType="Image" bindingId="${#ImageId#}" />
4
+ <Col>
5
+ <Row layoutType="itemIdentifier" bindingId="${#Info1#}" />
6
+ <Row layoutType="itemSecondary" bindingId="${#Info2#}" />
7
+ </Col>
8
+ <Col width="1em" layoutType="itemSecondary" bindingId="${#bindingId#}" />
9
+ <Col width="4em" max-width="4em">
10
+ <Row layoutType="itemSecondary" bindingId="${#Info3#}" />
11
+ </Col>
12
+ </Default>
13
+ </ItemListLayout>
@@ -0,0 +1,10 @@
1
+ <ItemListLayout>
2
+ <Default>
3
+ <Header>
4
+ <Col bindingId="${#Col1Label#}" align="left" />
5
+ <Col bindingId="${#Col2Label#}" align="left" />
6
+ </Header>
7
+ <Col width="6em" layoutType="itemValueVerySmall" bindingId="${#Col1#}" />
8
+ <Col width="6em" layoutType="itemValueVerySmall" bindingId="${#Col2#}" />
9
+ </Default>
10
+ </ItemListLayout>
@@ -0,0 +1,8 @@
1
+ <ItemListLayout>
2
+ <Default>
3
+ <Col>
4
+ <Row layoutType="itemIdentifier" bindingId="${#Row1#}" />
5
+ <Row layoutType="itemSecondary" bindingId="${#Row2#}" />
6
+ </Col>
7
+ </Default>
8
+ </ItemListLayout>
@@ -0,0 +1,12 @@
1
+ <LinkBar>
2
+ <ImageButton name="${#name#}" backendSystem="${#backendSystem#}">
3
+ <Bindings>
4
+ <Resource target="Image" type="Image" id="${#idImage#}" />
5
+ <Resource target="Text" type="Label" id="${#idLabel#}Id" defaultLabel="${#defaultLabel#}" />
6
+ <Binding target="Info" binding="${#binding#}" bindingMode="ONE_WAY" />
7
+ </Bindings>
8
+ <Events>
9
+ <ButtonPressedEvent event="${#event#}Pressed" />
10
+ </Events>
11
+ </ImageButton>
12
+ </LinkBar>
@@ -0,0 +1,3 @@
1
+ <Events>
2
+ <LookupEvent event="${#event#}" />
3
+ </Events>
@@ -0,0 +1,6 @@
1
+ <Lookup name="${#name#}">
2
+ <Bindings>
3
+ <Resource target="Label" type="Label" id="${#id#}Id" defaultLabel="${#defaultLabel#}" />
4
+ <Binding target="Value" binding="${#binding#}" bindingMode="ONE_WAY" />
5
+ </Bindings>
6
+ </Lookup>
@@ -0,0 +1,7 @@
1
+ <MediaControl name="${#name#}">
2
+ <Bindings>
3
+ <Binding target="MediaPath" type="Text" binding="${#binding1#}" bindingMode="ONE_WAY" />
4
+ <Binding target="ThumbnailPath" type="Text" binding="${#binding2#}" bindingMode="ONE_WAY" />
5
+ <Binding target="Type" type="Text" binding="${#binding3#}" bindingMode="ONE_WAY" />
6
+ </Bindings>
7
+ </MediaControl>
@@ -0,0 +1 @@
1
+ <Binding target="Description" type="Text" binding="${#binding#}" bindingMode="ONE_WAY" />
@@ -0,0 +1 @@
1
+ <Binding target="IsTagged" type="Text" binding="${#binding#}" bindingMode="ONE_WAY" />
@@ -0,0 +1 @@
1
+ <Binding target="MediaPath" type="Text" binding="${#binding#}" bindingMode="ONE_WAY" />
@@ -0,0 +1 @@
1
+ <Binding target="Type" type="Text" binding="${#binding#}" bindingMode="ONE_WAY" />
@@ -0,0 +1,4 @@
1
+ <Events>
2
+ <ContextOpeningEvent event="${#coe#}" />
3
+ <ContextSelectedEvent event="${#cse#}" />
4
+ </Events>
@@ -0,0 +1,8 @@
1
+ <MediaListControl name="${#name#}" dataSource="${#dataSource#}">
2
+ <Bindings>
3
+ <Binding target="MediaPath" type="Text" binding="${#binding1#}" bindingMode="ONE_WAY" />
4
+ <Binding target="IsTagged" type="Text" binding="${#binding2#}" bindingMode="ONE_WAY" />
5
+ <Binding target="Description" type="Text" binding="${#binding3#}" bindingMode="ONE_WAY" />
6
+ <Binding target="Type" type="Text" binding="${#binding4#}" bindingMode="ONE_WAY" />
7
+ </Bindings>
8
+ </MediaListControl>
@@ -0,0 +1,8 @@
1
+ <LongPressMenu name="${#name#}" dataSource="${#dataSource#}">
2
+ <Items>
3
+ <Bindings>
4
+ <Binding target="Icon" type="Image" binding="${#bindingImage#}" />
5
+ <Binding target="Text" type="Label" binding="${#bindingLabel#}" />
6
+ </Bindings>
7
+ </Items>
8
+ </LongPressMenu>
@@ -0,0 +1,9 @@
1
+ <MenuItem itemId="${#itemId#}" backendSystem="both">
2
+ <Bindings>
3
+ <Resource target="Text" type="Label" id="${#id#}Id" defaultLabel="${#defaultLabel#}" />
4
+ <Resource target="Icon" type="Image" id="${#id1#}" />
5
+ </Bindings>
6
+ <Events>
7
+ <ButtonPressedEvent event="${#event#}Pressed" />
8
+ </Events>
9
+ </MenuItem>
@@ -0,0 +1,2 @@
1
+ <Merger name="${#name#}" pattern="oneInputControlTwoButtonsMax">
2
+ </Merger>
@@ -0,0 +1,2 @@
1
+ <Merger name="${#name#}" pattern="twoInputControls" labelHandling="Combined" separator="," leftRatio="${#leftRatio#}" rightRatio="${#rightRatio#}">
2
+ </Merger>
@@ -0,0 +1,2 @@
1
+ <Merger name="${#name#}" pattern="twoInputControls" labelHandling="None" leftRatio="${#leftRatio#}" rightRatio="${#rightRatio#}" >
2
+ </Merger>
@@ -0,0 +1,5 @@
1
+ <Merger name="${#name#}" pattern="twoInputControls" labelHandling="Own" leftRatio="${#leftRatio#}" rightRatio="${#rightRatio#}">
2
+ <Bindings>
3
+ <Resource target="Label" type="Label" defaultLabel="${#defaultLabel#}" id="${#id#}" />
4
+ </Bindings>
5
+ </Merger>
@@ -0,0 +1,9 @@
1
+ <NoDataMessage name="${#componentName#}">
2
+ <Bindings>
3
+ <!-- mandatory bindings -->
4
+ <Resource target="infoIcon" type="Image" id="${#infoIcon#}" />
5
+ <Binding target="maintext" type="Text" binding="${#maintext#}" bindingMode="ONE_WAY" />
6
+ <!-- optional bindings -->
7
+ <Binding target="subtext" type="Text" binding="${#subtext#}" bindingMode="ONE_WAY" />
8
+ </Bindings>
9
+ </NoDataMessage>
@@ -0,0 +1,43 @@
1
+ <Page pagePattern="MasterDetailSectionPage" navigation="Off" masterSectionFlex="40" detailSectionFlex="60">
2
+ <PageHeader>
3
+ <Bindings>
4
+ <Resource target="title" type="Label" id="${#id#}Id" defaultLabel="${#defaultLabel#}" bindingMode="ONE_TIME" />
5
+ </Bindings>
6
+ </PageHeader>
7
+ <Section sectionName="masterSection" sectionPattern="SingleAreaSection">
8
+ <Area areaName="mainArea" areaPattern="SingleElementArea">
9
+ <GroupedList name="MasterList" searchable="${#searchable#}" groupBy="${#groupBy#}" sortBy="${#sortBy#}" master="true" dataSource="${#dataSource#}" direction="${#direction#}" indexBar="${#indexBar#}" swipe="${#swipe#}" hasBorder="${#hasBorder#}" onItemDisclosure="${#onItemDisclosure#}">
10
+ <Items name="Items" itemPattern="${#itemPattern#}">
11
+ <!--
12
+ ItemListLayout Node is required. Please press CTRL-Space to select an appropriate snippet
13
+ <ItemListLayout></ItemListLayout>
14
+ -->
15
+ <Bindings>
16
+ <Binding target="${#target#}" type="Text" binding="${#binding#}" bindingMode="ONE_WAY" />
17
+ </Bindings>
18
+ </Items>
19
+ <Events>
20
+ <ItemSelectedEvent event="itemSelected" resetMultiAreas="true">
21
+ <Params>
22
+ <Param name="${#name#}" value="${#value#}" />
23
+ </Params>
24
+ </ItemSelectedEvent>
25
+ </Events>
26
+ </GroupedList>
27
+ </Area>
28
+ </Section>
29
+ <Section sectionName="detailSection" sectionPattern="SingleAreaSection">
30
+ <Area areaName="detailArea" areaPattern="GroupedElementsArea">
31
+ <GroupElement name="${#name1#}">
32
+ <Bindings>
33
+ <Resource target="Title" type="Label" id="${#id1#}Id" defaultLabel="${#defaultLabel1#}" />
34
+ </Bindings>
35
+ </GroupElement>
36
+ <GroupElement name="${#name2#}">
37
+ <Bindings>
38
+ <Resource target="Title" type="Label" id="${#id2#}Id" defaultLabel="${#defaultLabel2#}" />
39
+ </Bindings>
40
+ </GroupElement>
41
+ </Area>
42
+ </Section>
43
+ </Page>
@@ -0,0 +1,44 @@
1
+ <Page pagePattern="MasterDetailSectionPage" navigation="Off" masterSectionFlex="40" detailSectionFlex="60">
2
+ <PageHeader>
3
+ <Bindings>
4
+ <Resource target="title" type="Label" id="${#id#}Id" defaultLabel="${#defaultLabel#}" bindingMode="ONE_TIME" />
5
+ </Bindings>
6
+ </PageHeader>
7
+ <Section sectionName="masterSection" sectionPattern="SingleAreaSection">
8
+ <Area areaName="mainArea" areaPattern="SingleElementArea">
9
+ <GroupedList name="MasterList" searchable="${#searchable#}" groupBy="${#groupBy#}" sortBy="${#sortBy#}" master="true" dataSource="${#dataSource#}" direction="${#direction#}" indexBar="${#indexBar#}" swipe="${#swipe#}" hasBorder="${#hasBorder#}" onItemDisclosure="${#onItemDisclosure#}">
10
+ <Items name="Items" itemPattern="${#itemPattern#}">
11
+ <!--
12
+ ItemListLayout Node is required. Please press CTRL-Space to select an appropriate snippet
13
+ <ItemListLayout></ItemListLayout>
14
+ -->
15
+ <Bindings>
16
+ <Binding target="${#target#}" type="Text" binding="${#binding#}" bindingMode="ONE_WAY" />
17
+ </Bindings>
18
+ </Items>
19
+ <Events>
20
+ <ItemSelectedEvent event="itemSelected" resetMultiAreas="true">
21
+ <Params>
22
+ <Param name="${#name#}" value="${#value#}" />
23
+ </Params>
24
+ </ItemSelectedEvent>
25
+ </Events>
26
+ </GroupedList>
27
+ </Area>
28
+ </Section>
29
+ <Section sectionName="detailSection" sectionPattern="SingleAreaSection">
30
+ <Area areaName="detailArea" areaPattern="SingleElementArea">
31
+ <GroupedList name="${#name1#}" searchable="${#searchable1#}" groupBy="${#groupBy1#}" sortBy="${#sortBy1#}" dataSource="${#dataSource1#}" direction="${#direction1#}" indexBar="${#indexBar1#}" swipe="${#swipe1#}" hasBorder="${#hasBorder1#}" onItemDisclosure="${#onItemDisclosure1#}" >
32
+ <Items name="Items">
33
+ <!--
34
+ ItemListLayout Node is required. Please press CTRL-Space to select an appropriate snippet
35
+ <ItemListLayout></ItemListLayout>
36
+ -->
37
+ <Bindings>
38
+ <Binding target="${#target1#}" type="Text" binding="${#binding1#}" bindingMode="ONE_WAY" />
39
+ </Bindings>
40
+ </Items>
41
+ </GroupedList>
42
+ </Area>
43
+ </Section>
44
+ </Page>
@@ -0,0 +1,61 @@
1
+ <Page pagePattern="MasterDetailSectionPage" navigation="Off" masterSectionFlex="40" detailSectionFlex="60">
2
+ <ViewVariables>
3
+ <ViewVariable name="currentTabName" value="Tab1" />
4
+ </ViewVariables>
5
+ <PageHeader>
6
+ <Bindings>
7
+ <Resource target="title" type="Label" id="${#id#}Id" defaultLabel="${#defaultLabel#}" bindingMode="ONE_TIME" />
8
+ </Bindings>
9
+ </PageHeader>
10
+ <Section sectionName="masterSection" sectionPattern="SingleAreaSection">
11
+ <Area areaName="mainArea" areaPattern="SingleElementArea">
12
+ <GroupedList name="MasterList" searchable="${#searchable#}" groupBy="${#groupBy#}" sortBy="${#sortBy#}" master="true" dataSource="${#dataSource#}" direction="${#direction#}" indexBar="${#indexBar#}" swipe="${#swipe#}" hasBorder="${#hasBorder#}" onItemDisclosure="${#onItemDisclosure#}">
13
+ <Items name="Items" itemPattern="${#itemPattern#}">
14
+ <!--
15
+ ItemListLayout Node is required. Please press CTRL-Space to select an appropriate snippet
16
+ <ItemListLayout></ItemListLayout>
17
+ -->
18
+ <Bindings>
19
+ <Binding target="${#target#}" type="Text" binding="${#binding#}" bindingMode="ONE_WAY" />
20
+ </Bindings>
21
+ </Items>
22
+ <Events>
23
+ <ItemSelectedEvent event="itemSelected" resetMultiAreas="true">
24
+ <Params>
25
+ <Param name="${#name#}" value="${#value#}" />
26
+ </Params>
27
+ </ItemSelectedEvent>
28
+ </Events>
29
+ </GroupedList>
30
+ </Area>
31
+ </Section>
32
+ <Section sectionName="detailSection" sectionPattern="TabbedViewAreaSection" currentTab="View::currentTabName">
33
+ <Area areaName="tabArea" areaPattern="TabElementArea">
34
+ <TabSelector name="TabSelector">
35
+ <Items>
36
+ <Tab tabName="Tab1" backendSystem="${#backendSystem#}">
37
+ <Bindings>
38
+ <Resource target="image" type="Image" id="${#id4#}" bindingMode="ONE_TIME" />
39
+ <Resource target="text" type="Label" id="${#id1#}Id" defaultLabel="${#defaultLabel1#}" bindingMode="ONE_TIME" />
40
+ </Bindings>
41
+ </Tab>
42
+ <Tab tabName="Tab2" backendSystem="${#backendSystem1#}">
43
+ <Bindings>
44
+ <Resource target="image" type="Image" id="${#id2#}" bindingMode="ONE_TIME" />
45
+ <Resource target="text" type="Label" id="${#id3#}Id" defaultLabel="${#defaultLabel2#}" bindingMode="ONE_TIME" />
46
+ </Bindings>
47
+ </Tab>
48
+ </Items>
49
+ <Events>
50
+ <ItemSelectedEvent event="tabSelected" storeTabNameIn="currentTabName" />
51
+ </Events>
52
+ </TabSelector>
53
+ </Area>
54
+ <Area areaName="Tab1" areaPattern="SingleElementArea">
55
+
56
+ </Area>
57
+ <Area areaName="Tab2" areaPattern="SingleElementArea">
58
+
59
+ </Area>
60
+ </Section>
61
+ </Page>
@@ -0,0 +1,44 @@
1
+ <Page pagePattern="MasterDetailSectionPage" navigation="Off" masterSectionFlex="40" detailSectionFlex="60">
2
+ <PageHeader>
3
+ <Bindings>
4
+ <Resource target="title" type="Label" id="${#id#}Id" defaultLabel="${#defaultLabel#}" bindingMode="ONE_TIME" />
5
+ </Bindings>
6
+ </PageHeader>
7
+ <Section sectionName="masterSection" sectionPattern="FilteredViewAreaSection">
8
+ <Area areaName="viewArea" areaPattern="SingleElementArea">
9
+ <GroupedList name="MasterList" searchable="${#searchable#}" groupBy="${#groupBy#}" sortBy="${#sortBy#}" master="true" dataSource="${#dataSource#}" direction="${#direction#}" indexBar="${#indexBar#}" swipe="${#swipe#}" hasBorder="${#hasBorder#}" onItemDisclosure="${#onItemDisclosure#}">
10
+ <Items name="Items" itemPattern="${#itemPattern#}">
11
+ <!--
12
+ ItemListLayout Node is required. Please press CTRL-Space to select an appropriate snippet
13
+ <ItemListLayout></ItemListLayout>
14
+ -->
15
+ <Bindings>
16
+ <Binding target="${#target#}" type="Text" binding="${#binding#}" bindingMode="ONE_WAY" />
17
+ </Bindings>
18
+ </Items>
19
+ <Events>
20
+ <ItemSelectedEvent event="itemSelected" resetMultiAreas="true">
21
+ <Params>
22
+ <Param name="${#name#}" value="${#value#}" />
23
+ </Params>
24
+ </ItemSelectedEvent>
25
+ </Events>
26
+ </GroupedList>
27
+ </Area>
28
+ </Section>
29
+ <Section sectionName="detailSection" sectionPattern="SingleAreaSection">
30
+ <Area areaName="mainArea" areaPattern="GroupedElementsArea">
31
+ <GroupElement name="${#name1#}">
32
+ <Bindings>
33
+ <Resource target="Title" type="Label" id="${#id2#}Id" defaultLabel="${#defaultLabel1#}" />
34
+ </Bindings>
35
+ <CheckBox name="${#name2#}" disabled="false">
36
+ <Bindings>
37
+ <Resource target="Label" type="Label" id="${#id1#}Id" defaultLabel="${#defaultLabel2#}" />
38
+ <Binding target="checkedValue" binding="${#binding1#}" bindingMode="ONE_WAY" />
39
+ </Bindings>
40
+ </CheckBox>
41
+ </GroupElement>
42
+ </Area>
43
+ </Section>
44
+ </Page>
@@ -0,0 +1,33 @@
1
+ <Page pagePattern="SingleSectionPage">
2
+ <PageHeader>
3
+ <Bindings>
4
+ <Resource target="title" type="Label" id="${#id#}Id" defaultLabel="${#defaultLabel#}" bindingMode="ONE_TIME" />
5
+ </Bindings>
6
+ </PageHeader>
7
+ <Section sectionName="masterSection" sectionPattern="SingleAreaSection">
8
+ <Area areaName="mainArea" areaPattern="GroupedElementsArea">
9
+ <GroupElement name="${#name#}">
10
+ <Bindings>
11
+ <Resource target="Title" type="Label" id="${#id1#}Id" defaultLabel="${#defaultLabel1#}" />
12
+ </Bindings>
13
+ <InputArea name="${#name1#}">
14
+ <Bindings>
15
+ <Resource target="Label" type="Label" defaultLabel="${#defaultLabel2#}" id="${#id2#}Id" />
16
+ <Binding target="Value" type="${#type#}" binding="${#binding#}" bindingMode="TWO_WAY" />
17
+ </Bindings>
18
+ </InputArea>
19
+ </GroupElement>
20
+ <GroupElement name="${#name2#}">
21
+ <Bindings>
22
+ <Resource target="Title" type="Label" id="${#id3#}Id" defaultLabel="${#defaultLabel3#}" />
23
+ </Bindings>
24
+ <Lookup name="${#name3#}">
25
+ <Bindings>
26
+ <Resource target="Label" type="Label" id="${#id4#}Id" defaultLabel="${#defaultLabel4#}" />
27
+ <Binding target="Value" binding="${#binding1#}" bindingMode="ONE_WAY" />
28
+ </Bindings>
29
+ </Lookup>
30
+ </GroupElement>
31
+ </Area>
32
+ </Section>
33
+ </Page>