@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.
- package/LICENSE.md +37 -0
- package/README.md +756 -0
- package/lib/commands/modeler/workspace/add.js +1 -0
- package/lib/commands/modeler/workspace/build.js +1 -0
- package/lib/commands/modeler/workspace/cleanup.js +1 -0
- package/lib/commands/modeler/workspace/create.js +1 -0
- package/lib/commands/modeler/workspace/package.js +1 -0
- package/lib/commands/modeler/workspace/refreshLocale.js +1 -0
- package/lib/commands/modeler/workspace/server/start.js +1 -0
- package/lib/commands/modeler/workspace/upgrade.js +1 -0
- package/lib/commands/modeler/workspace/utils/base64encode.js +1 -0
- package/lib/commands/modeler/workspace/utils/generateManifest.js +1 -0
- package/lib/commands/modeler/workspace/utils/migrateContracts.js +1 -0
- package/lib/commands/modeler/workspace/validate.js +1 -0
- package/lib/constants.js +1 -0
- package/lib/hooks/init/updateCheck.js +1 -0
- package/lib/model/buildStatus.js +1 -0
- package/lib/model/workspace.js +1 -0
- package/lib/model/workspaceCommand.js +1 -0
- package/lib/shared/commandBuilder.js +1 -0
- package/lib/shared/commandExecutor.js +1 -0
- package/lib/shared/commandOutput.js +1 -0
- package/lib/types/config.js +1 -0
- package/lib/types/errors.js +1 -0
- package/lib/types/messages.js +1 -0
- package/lib/types/package.js +1 -0
- package/lib/types/results.js +1 -0
- package/lib/utils/componentHelper.js +1 -0
- package/lib/utils/errorHelper.js +1 -0
- package/lib/utils/fsHelper.js +1 -0
- package/lib/utils/generateManifestHelper.js +1 -0
- package/lib/utils/messageHelper.js +1 -0
- package/lib/utils/packageHelper.js +1 -0
- package/lib/utils/serverHelper.js +1 -0
- package/lib/utils/templateEngine.js +1 -0
- package/lib/utils/templateHelper.js +1 -0
- package/lib/utils/updateChecker.js +1 -0
- package/lib/utils/validationHelper.js +1 -0
- package/messages/modeler-workspace-add.md +45 -0
- package/messages/modeler-workspace-build.md +29 -0
- package/messages/modeler-workspace-cleanup.md +17 -0
- package/messages/modeler-workspace-create.md +21 -0
- package/messages/modeler-workspace-package.md +21 -0
- package/messages/modeler-workspace-refresh-locale.md +27 -0
- package/messages/modeler-workspace-server-start.md +37 -0
- package/messages/modeler-workspace-upgrade.md +21 -0
- package/messages/modeler-workspace-utils-base64encode.md +25 -0
- package/messages/modeler-workspace-utils-generateManifest.md +15 -0
- package/messages/modeler-workspace-utils-migrateContracts.md +23 -0
- package/messages/modeler-workspace-validate.md +29 -0
- package/messages/modeler-workspace.md +19 -0
- package/oclif.manifest.json +429 -0
- package/package.json +108 -0
- package/templates/.gitignore.tmp +4 -0
- package/templates/README.md.tmp +77 -0
- package/templates/contractTemplates/#ModuleName#/BO/README.md +1 -0
- package/templates/contractTemplates/#ModuleName#/DS/README.md +1 -0
- package/templates/contractTemplates/#ModuleName#/PL/README.md +1 -0
- package/templates/contractTemplates/#ModuleName#/PR/README.md +1 -0
- package/templates/contractTemplates/#ModuleName#/TB/README.md +1 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/Bo${NAME}/Bo${NAME}.businessobject.xml +22 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/Bo${NAME}/Mv2/CreateAsync/Bo${NAME}.AfterCreateAsync.bl.js +54 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/Bo${NAME}/Mv2/CreateAsync/Bo${NAME}.BeforeCreateAsync.bl.js +56 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/Bo${NAME}/Mv2/DoValidateAsync/Bo${NAME}.AfterDoValidateAsync.bl.js +57 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/Bo${NAME}/Mv2/DoValidateAsync/Bo${NAME}.BeforeDoValidateAsync.bl.js +56 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/Bo${NAME}/Mv2/Initialize/Bo${NAME}.AfterInitialize.bl.js +54 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/Bo${NAME}/Mv2/Initialize/Bo${NAME}.BeforeInitialize.bl.js +54 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/Bo${NAME}/Mv2/LoadAsync/Bo${NAME}.AfterLoadAsync.bl.js +57 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/Bo${NAME}/Mv2/LoadAsync/Bo${NAME}.BeforeLoadAsync.bl.js +56 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/Bo${NAME}/Mv2/SaveAsync/Bo${NAME}.AfterSaveAsync.bl.js +57 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/Bo${NAME}/Mv2/SaveAsync/Bo${NAME}.BeforeSaveAsync.bl.js +56 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/BusinessObject.md +186 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/snippets/BusinessObjectListObjectsListObjectEventsSnipp.xml +3 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/snippets/BusinessObjectListObjectsListObjectSnipp.xml +1 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/snippets/BusinessObjectNestedObjectsNestedObjectSnipp.xml +1 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/snippets/BusinessObjectObjectLookupsObjectLookupEventsSnipp.xml +3 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/snippets/BusinessObjectObjectLookupsObjectLookupSnipp.xml +1 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/snippets/BusinessObjectSimplePropertiesSimplePropertyEventsSnipp.xml +3 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/snippets/BusinessObjectSimplePropertiesSimplePropertySnipp.xml +1 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobjecthelper/snippets/BusinessObjectHelperSimplePropertiesSimplePropertySnipp.xml +1 -0
- package/templates/contractTemplates/BO_BusinessObject/validationmessages/ValidationMessage.md +38 -0
- package/templates/contractTemplates/BO_BusinessObject/validationmessages/snippets/ValidationMessagesValidationMessageSnipp.xml +1 -0
- package/templates/contractTemplates/DS_DataSource/DataSource.md +319 -0
- package/templates/contractTemplates/DS_DataSource/Ds${NAME}_sf.datasource.xml +11 -0
- package/templates/contractTemplates/DS_DataSource/snippets/DataSourceAttributesAttributeSnipp.xml +1 -0
- package/templates/contractTemplates/DS_DataSource/snippets/DataSourceAttributesDerivedAttributeSnipp.xml +1 -0
- package/templates/contractTemplates/DS_DataSource/snippets/DataSourceEntitiesEntityJoinSimpleJoinConditionAttributeSnipp.xml +1 -0
- package/templates/contractTemplates/DS_DataSource/snippets/DataSourceEntitiesEntityJoinSimpleJoinConditionLiteralSnipp.xml +1 -0
- package/templates/contractTemplates/DS_DataSource/snippets/DataSourceEntitiesEntitySnipp.xml +1 -0
- package/templates/contractTemplates/ExternalFiles/#Name#.externalfile.xml +6 -0
- package/templates/contractTemplates/LO_ListObject/Lo${NAME}/Li${NAME}.listitem.xml +5 -0
- package/templates/contractTemplates/LO_ListObject/Lo${NAME}/ListItem.md +114 -0
- package/templates/contractTemplates/LO_ListObject/Lo${NAME}/ListObject.md +354 -0
- package/templates/contractTemplates/LO_ListObject/Lo${NAME}/Lo${NAME}.listobject.xml +12 -0
- package/templates/contractTemplates/LO_ListObject/Lo${NAME}/Mv2/DoValidateAsync/Lo${NAME}.AfterDoValidateAsync.bl.js +57 -0
- package/templates/contractTemplates/LO_ListObject/Lo${NAME}/Mv2/DoValidateAsync/Lo${NAME}.BeforeDoValidateAsync.bl.js +56 -0
- package/templates/contractTemplates/LO_ListObject/Lo${NAME}/Mv2/LoadAsync/Lo${NAME}.AfterLoadAsync.bl.js +57 -0
- package/templates/contractTemplates/LO_ListObject/Lo${NAME}/Mv2/LoadAsync/Lo${NAME}.BeforeLoadAsync.bl.js +56 -0
- package/templates/contractTemplates/LO_ListObject/Lo${NAME}/Mv2/SaveAsync/Lo${NAME}.AfterSaveAsync.bl.js +57 -0
- package/templates/contractTemplates/LO_ListObject/Lo${NAME}/Mv2/SaveAsync/Lo${NAME}.BeforeSaveAsync.bl.js +56 -0
- package/templates/contractTemplates/LO_ListObject/snippets/ListItemSimplePropertiesSimplepropertySnipp.xml +1 -0
- package/templates/contractTemplates/LU_LookupObject/Lu${NAME}/LookupObject.md +97 -0
- package/templates/contractTemplates/LU_LookupObject/Lu${NAME}/Lu${NAME}.lookupobject.xml +12 -0
- package/templates/contractTemplates/LU_LookupObject/Lu${NAME}/Mv2/LoadAsync/Lu${NAME}.AfterLoadAsync.bl.js +57 -0
- package/templates/contractTemplates/LU_LookupObject/Lu${NAME}/Mv2/LoadAsync/Lu${NAME}.BeforeLoadAsync.bl.js +56 -0
- package/templates/contractTemplates/LU_LookupObject/snippets/LookupObjectSimplePropertiesSimplePropertySnipp.xml +1 -0
- package/templates/contractTemplates/PL_PrintLayout/#Name#PDF/#Name#PDF.printlayoutv2.xml +4 -0
- package/templates/contractTemplates/PR_Process_&_UI/#ModuleName#_#Name#/#ModuleName#_#Name#.userinterface.xml +4 -0
- package/templates/contractTemplates/PR_Process_&_UI/#ModuleName#_#Name#/#ModuleName#_#Name#Process.processflow.xml +12 -0
- package/templates/contractTemplates/PR_Process_&_UI/Process.md +790 -0
- package/templates/contractTemplates/PR_Process_&_UI/UserInterface.md +1545 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionConfirmSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionCreateSnipp.xml +7 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionDecisionSnipp.xml +5 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionEndSnipp.xml +5 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionLoadSnipp.xml +7 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionLogicSnipp.xml +7 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionMasterDetailSnipp.xml +24 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionNavigationSnipp.xml +8 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionPrintSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionPrintV2Snipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionProcessSnipp.xml +9 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionValidationSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionViewSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessEntryEntryActionsActionCreateSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessEntryEntryActionsActionLoadSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessEntryEntryActionsActionLogicSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Attachment/AttachmentFolderInfoSectionSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Attachment/AttachmentFolderSnipp.xml +24 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Banner/BannerFilterSnipp.xml +19 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Banner/Banner_WithFilterSnipp.xml +25 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Banner/Banner_WithoutFilterSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BindingList/BindingsList_DecisionsSnipp.xml +9 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BindingList/BindingsList_GroupsSnipp.xml +11 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BindingList/BindingsList_ResultsSnipp.xml +13 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlEventsSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlHierarchyBindingsBindingAddItemSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlHierarchyBindingsBindingCategoriesSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlHierarchyBindingsBindingShowCategorySnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlHierarchyDataSourcesSnipp.xml +3 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsBindingsBindingButtonSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsBindingsBindingComboSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsBindingsBindingDateSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsBindingsBindingDecimalSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsBindingsBindingDynamicSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsBindingsBindingImageSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsBindingsBindingStepperSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsBindingsBindingStepper_CorrelationIdSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsBindingsBindingTextSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsBindingsResourceImageSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsBindingsResourceLabelSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsContextMenuSnipp.xml +13 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlSearchAttributesSnipp.xml +3 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlSnipp.xml +22 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/MultiSelectionBreadCrumbControlSnipp.xml +23 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Calendar/CalendarControlEventsSnipp.xml +11 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Calendar/CalendarControlItemsBindingsBindingDateSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Calendar/CalendarControlItemsBindingsBindingDecimalSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Calendar/CalendarControlItemsBindingsBindingImageSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Calendar/CalendarControlItemsBindingsBindingLabelSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Calendar/CalendarControlItemsBindingsBindingTextSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Calendar/CalendarControlSettingsSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Calendar/CalendarControlSnipp.xml +8 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/CheckBox/CheckBoxEventsSnipp.xml +3 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/CheckBox/CheckBoxSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Cockpit/CockpitSectionsSnipp.xml +7 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/DataImportWizard/DataImportWizardSnipp.xml +12 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/DatePicker/DatePickerFieldSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/EmbededList/EmbeddedListSnipp.xml +8 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/EnhanceDecisionList/EnhancedDecisionListSnipp.xml +52 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/FastEntry/FastDataEntryGridSnipp.xml +69 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/GoogleMaps/GoogleMapDetailsSnipp.xml +20 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/GoogleMaps/GoogleMapSnipp.xml +7 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/GroupElement/GroupElementSnipp.xml +5 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/GroupedButtonList/GroupedButtonListEventsSnipp.xml +5 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/GroupedButtonList/GroupedButtonListFooterSnipp.xml +8 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/GroupedButtonList/GroupedButtonListSnipp.xml +8 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/GroupedList/GroupedListEventsSnipp.xml +7 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/GroupedList/GroupedListSnipp.xml +5 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/GroupedList/MultiSelectionGroupedListEventsSnipp.xml +7 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/GroupedList/MultiSelectionGroupedListSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/ImageButton/ImageButtonSnipp.xml +10 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/ImageSelector/ImageSelectorSnipp.xml +16 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/InputArea/InputAreaMultiLineSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/InputArea/InputAreaSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/ItemListLayout/ItemListLayout_ComplexSnipp.xml +13 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/ItemListLayout/ItemListLayout_GridSnipp.xml +10 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/ItemListLayout/ItemListLayout_TwoRowsSnipp.xml +8 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/LinkBar/LinkBarSnipp.xml +12 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Lookup/LookupEventSnipp.xml +3 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Lookup/LookupSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/MediaControl/MediaControlSnipp.xml +7 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/MediaListControl/MediaListControlBindingsBindingDescriptionSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/MediaListControl/MediaListControlBindingsBindingIsTaggedSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/MediaListControl/MediaListControlBindingsBindingMediaPathSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/MediaListControl/MediaListControlBindingsBindingTypeSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/MediaListControl/MediaListControlEventsSnipp.xml +4 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/MediaListControl/MediaListControlSnipp.xml +8 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Menu/LongPressMenuSnipp.xml +8 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Menu/MenuItemSnipp.xml +9 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Merger/MergerOneInputControlTwoButtonsMaxSnipp.xml +2 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Merger/MergerTwoInputControlsCombinedSnipp.xml +2 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Merger/MergerTwoInputControlsNoneSnipp.xml +2 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Merger/MergerTwoInputControlsOwnSnipp.xml +5 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/NoDataMessageSnipp.xml +9 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Page/MasterDetail/Page_MasterDetail_WithDetailGroupsSnipp.xml +43 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Page/MasterDetail/Page_MasterDetail_WithDetailListSnipp.xml +44 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Page/MasterDetail/Page_MasterDetail_WithDetailTabsSnipp.xml +61 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Page/MasterDetail/Page_MasterDetail_WithExtendedDetailSnipp.xml +44 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Page/SingleSection/Page_SingleSectionScreens_GroupedElementsSnipp.xml +33 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Page/SingleSection/Page_SingleSectionScreens_ListSnipp.xml +41 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Page/SingleSection/Page_SingleSectionScreens_TabSnipp.xml +39 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Page/SingleSection/Page_SingleSectionScreens_WizardSnipp.xml +34 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Page/SplitScreen/Page_SplitScreenSnipp.xml +27 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/SelectionBox/SelectionBoxBindingSnipp.xml +13 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/SelectionBox/SelectionBoxEventsSnipp.xml +4 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/SelectionBox/SelectionBoxToggleSnipp.xml +13 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/SignatureControl/SignatureControlBindingsBindingEditableParametersSnipp.xml +3 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/SignatureControl/SignatureControlBindingsBindingEditableSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/SignatureControl/SignatureControlBindingsBindingVisibleParametersSnipp.xml +3 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/SignatureControl/SignatureControlBindingsBindingVisibleSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/SignatureControl/SignatureControlEditabilityRolesSnipp.xml +3 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/SignatureControl/SignatureControlSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/SignatureControl/SignatureControlVisibilityRolesSnipp.xml +3 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Stepper/StepperSnipp.xml +7 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/TextBar/TextBarSnipp.xml +7 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/ThemeSelection/ThemeSelectionSnipp.xml +5 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/TimePicker/TimePickerFieldSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/UserWelcomeSnipp.xml +24 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/VisitDetailsSnipp.xml +21 -0
- package/templates/contractTemplates/TB_Table/#Name#_T.temptable.xml +11 -0
- package/templates/contractTemplates/TB_Table/snippets/#Name#.dbtable.xml +10 -0
- package/templates/contractTemplates/TB_Table/snippets/dbtable/DBTablecolumnscolumnSnipp.xml +1 -0
- package/templates/contractTemplates/TB_Table/snippets/dbtable/DBTableindexesindexSnipp.xml +3 -0
- package/templates/contractTemplates/TB_Table/snippets/temptable/TempTableColumnsColumnIsDeletedSnipp.xml +1 -0
- package/templates/contractTemplates/TB_Table/snippets/temptable/TempTableColumnsColumnSnipp.xml +1 -0
- package/templates/contractTemplates/TB_Table/snippets/temptable/TempTableindexesindexSnipp.xml +3 -0
- package/templates/contractTemplates/UI_Plugins/#Name#UiPluginV2.uipluginv2.xml +16 -0
- package/templates/templateDefinitions.json +167 -0
package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/FastEntry/FastDataEntryGridSnipp.xml
ADDED
|
@@ -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>
|
package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/GoogleMaps/GoogleMapDetailsSnipp.xml
ADDED
|
@@ -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,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>
|
package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/GroupedList/GroupedListSnipp.xml
ADDED
|
@@ -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,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>
|
package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/ImageButton/ImageButtonSnipp.xml
ADDED
|
@@ -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>
|
package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/ImageSelector/ImageSelectorSnipp.xml
ADDED
|
@@ -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,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,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>
|
package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/MediaControl/MediaControlSnipp.xml
ADDED
|
@@ -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,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,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>
|