Found 122 results for "templates workflowtask"

The search executed in 0.001359731 seconds. That's fast.

Gitana / 3.2 / Guide / Guide / Templates

Templates Cloud CMS supports the usage of templates at various points to generate presentation and output for things like emails, PDFs, web page components and more. Cloud CMS supports two template engines - Handlebars and Freemarker. In general, we recommend using Handlebars since the syntax is a bit easier. This document covers Handlebars and describes helper functions available in Handlebars that make processing simpler. Model Variables The following describes the internal structure of model

Score: 17.376734

Gitana / 3.2 / Guide / Guide / Scripting

Scripting Cloud CMS provides a server-side Scripting API that allows you to write custom actions, rules and behaviors that execute on the server. These scripts can be introduced at any time and do not require any server downtime. Developers can write scripts and hook them into Cloud CMS at any time to adjust how the product behaves and operates. The Scripting API consists of a set of server-side Scripting Objects that wrap your content and expose a select set of API service methods for your use.

Score: 11.859091

Gitana / 4.0 / Data Engine / Scripting / Overview

Scripting Cloud CMS provides a server-side Scripting API that allows you to write custom actions, rules and behaviors that execute on the server. These scripts can be introduced at any time and do not require any server downtime. Developers can write scripts and hook them into Cloud CMS at any time to adjust how the product behaves and operates. The Scripting API consists of a set of server-side Scripting Objects that wrap your content and expose a select set of API service methods for your use.

Score: 11.859091

Gitana / 4.0 / Data Engine / Templates / Overview

Templates Cloud CMS supports the usage of templates at various points to generate presentation and output for things like emails, PDFs, web page components and more. Cloud CMS supports two template engines - Handlebars and Freemarker. In general, we recommend using Handlebars since the syntax is a bit easier. This document covers Handlebars and describes helper functions available in Handlebars that make processing simpler. Model Variables The following describes the internal structure of model

Score: 11.251083

Gitana / 4.0 / Developers / Application Server / Tags

Tags @associations @block @content @debug @dependency @expand @form @fragment @include @iter @layout @link @nodeAttachmentValue @params @processTemplate @query @queryOne @relatives @resource @search @value

Score: 10.169918

Gitana / 4.0 / Forms / API / Templates

Templates Alpaca includes an advanced templating system that is driven by views. You can create your own views and templates at compile time (when you actually build Alpaca) or you can override them on the fly at runtime. Templates can be supplied either as inline functions (which are discovered if you've built them at compile time), as URLs (which are loaded at runtime), as DOM references (which are then sourced) or as HTML strings. In the latter two cases, the templates are acquired and then c

Score: 8.119946

Gitana / 3.2 / Guide / Guide / UI Developers Guide / Templates

Templates On pages like "Content Types" and "Search", each list item has some detailed information displayed. You can customize the information you hope to appear via Templates. Create a UI Template Create a template by navigating to Manage Project -> UI Templates and clicking "Create UI Template". Fill in the title and a unique key to create a new UI template. You can also write down some description for the template. Nodes with qname n:ui_template have two properties: key, which is a unique id

Score: 7.962432

Gitana / 4.0 / Developers / User Interface Customization / Templates

Templates On pages like "Content Types" and "Search", each list item has some detailed information displayed. You can customize the information you hope to appear via Templates. Create a UI Template Create a template by navigating to Manage Project -> UI Templates and clicking "Create UI Template". Fill in the title and a unique key to create a new UI template. You can also write down some description for the template. Nodes with qname n:ui_template have two properties: key, which is a unique id

Score: 7.962432

Gitana / 3.2 / Guide / Guide / Content Modeling / Content Model Builder / Extend Field Templates

Extend Field Templates If you find the existing field templates still limited to your need, Modules allow you to add your own field template. In the following sample, we added a field template that provides a Summernote WYSIWYG editor. Default CKEditor WYSIWYG: Customized Summernote WYSIWYG: Get the code here in the SDK: https://github.com/gitana/sdk/tree/master/ui/modules/content-model/content-model-field

Score: 6.146473

Gitana / 4.0 / Data Engine / Content Models / Content Model Builder / Extend Field Templates

Extend Field Templates If you find the existing field templates still limited to your need, Modules allow you to add your own field template. In the following sample, we added a field template that provides a Summernote WYSIWYG editor. Default CKEditor WYSIWYG: Customized Summernote WYSIWYG: Get the code here in the SDK: https://github.com/gitana/sdk/tree/master/ui/modules/content-model/content-model-field

Score: 6.146473

Gitana / 3.2 / Guide / Guide / UI Developers Guide / Contexts / project-field-templates

project-field-templates [ { "evaluator": "context-project", "config": { "project-field-templates": { "templates": [ { "key": "text", "title": "Text", "type": "string/text", "description": "Text value. e.g. title, name, header", "icon": "fa fa-align-left" }, { "key": "number", "title": "Number", "type": "number/number", "description": "N

Score: 6.009003

Gitana / 4.0 / Developers / User Interface Customization / Contexts / project-field-templates

project-field-templates [ { "evaluator": "context-project", "config": { "project-field-templates": { "templates": [ { "key": "text", "title": "Text", "type": "string/text", "description": "Text value. e.g. title, name, header", "icon": "fa fa-align-left" }, { "key": "number", "title": "Number", "type": "number/number", "description": "N

Score: 6.009003

Gitana / 3.2 / Guide / Guide / Application Server / Tags

Tags @associations @block @content @debug @dependency @expand @form @fragment @include @iter @layout @link @nodeAttachmentValue @params @processTemplate @query @queryOne @relatives @resource @search @value

Score: 4.5648937

Is there a programmatic way to add more content to workflows?

There is a programmatic way to add more content to workflows once they're in-flight. However, once the workflow is in-flight, the workflow process instance isn't the correct place to add things. Instead, you'd want to add new content to a workflow task. Essentially, a workflow is made up of a series of tasks. When the workflow transitions from one node to another in the workflow model, it instantiates a new task and the task holds the state (and references to documents) for that phase of the wor

Score: 4.206377

Gitana / 3.2 / Guide / Guide / Workflow / Workflow Handlers / Script

Script Type: script This handler lets you run a script based on the items in a workflow. The config for this handler is as follows: { "script": "my script" "mimetype": "optional script mimetype (javascript by default)" } When writing your script, you will have access to variables containing document and workflow data: workflow Current workflow workflowTask - Current workflowTask workflowData - Workflow metadata documents - Array of documents being processed by the workflow Example: Simp

Score: 4.131488

Gitana / 4.0 / Data Engine / Workflow / Workflow Handlers / Script

Script Type: script This handler lets you run a script based on the items in a workflow. The config for this handler is as follows: { "script": "my script" "mimetype": "optional script mimetype (javascript by default)" } When writing your script, you will have access to variables containing document and workflow data: workflow Current workflow workflowTask - Current workflowTask workflowData - Workflow metadata documents - Array of documents being processed by the workflow Example: Simp

Score: 4.131488

Gitana / 3.2 / Guide / Guide / Templates / Workflow Task

Workflow Task Name: workflowTask Property Type Description id string The ID of the workflow task title string The title of the workflow task description string The description of the workflow task timeStarted calendar The time the workflow was started timeCompleted calendar The time the workflow was completed (if completed) context object Contextual variables being passed along with the workflow task workflowData object Data being passed along with the workflow task workflowId string The ID of t

Score: 3.0394475

Gitana / 4.0 / Data Engine / Templates / Workflow Task

Workflow Task Name: workflowTask Property Type Description id string The ID of the workflow task title string The title of the workflow task description string The description of the workflow task timeStarted calendar The time the workflow was started timeCompleted calendar The time the workflow was completed (if completed) context object Contextual variables being passed along with the workflow task workflowData object Data being passed along with the workflow task workflowId string The ID of t

Score: 3.0394475

Gitana / 3.2 / Guide / Guide / UI Developers Guide / Contexts / uitemplates-subcontext

uitemplates-subcontext [ { "config": { "uitemplates-subcontext": { "items": [ { "key": "project-uitemplates", "title": "Project UI Templates", "header": true, "order": 1000, "items": [ { "key": "project/uitemplates/settings", "title": "Settings", "uri": "#/projects/{projectId}/uitemplates/settings", "iconClass": "fa fa-sliders"

Score: 2.4365597

Gitana / 4.0 / Developers / User Interface Customization / Contexts / uitemplates-subcontext

uitemplates-subcontext [ { "config": { "uitemplates-subcontext": { "items": [ { "key": "project-uitemplates", "title": "Project UI Templates", "header": true, "order": 1000, "items": [ { "key": "project/uitemplates/settings", "title": "Settings", "uri": "#/projects/{projectId}/uitemplates/settings", "iconClass": "fa fa-sliders"

Score: 2.4365597

Gitana / 3.2 / Guide / Guide / UI Developers Guide / Contexts / email-settings-subcontext

email-settings-subcontext [ { "config": { "email-settings-subcontext": { "items": [ { "key": "project-email", "title": "Project Email", "header": true, "order": 1000, "items": [ { "key": "project/email/settings", "title": "Settings", "uri": "#/projects/{projectId}/email/settings", "iconClass": "fa fa-sliders" },

Score: 2.2288797

Gitana / 4.0 / Developers / User Interface Customization / Contexts / email-settings-subcontext

email-settings-subcontext [ { "config": { "email-settings-subcontext": { "items": [ { "key": "project-email", "title": "Project Email", "header": true, "order": 1000, "items": [ { "key": "project/email/settings", "title": "Settings", "uri": "#/projects/{projectId}/email/settings", "iconClass": "fa fa-sliders" },

Score: 2.2288797

Gitana / 3.2 / Guide / Guide / User Interface / Image Editor

Image Editor With the CloudCMS you can edit your images using our Image-Editor. To use the Image Editor and see all the cool things you can do with your Images: Go to your Image From the Left Navigation Menu, Click on Editor Page You can see all the Editor Options that you can perform on this Image. You can see the dimensions like the width and the height of the original image just above the options : Zoom-in and Zoom-out You can Zoom-in or Zoom-out using the first button group as follows: Rotat

Score: 2.2020109

Gitana / 4.0 / User Interface / User Interface / Image Editor

Image Editor With the CloudCMS you can edit your images using our Image-Editor. To use the Image Editor and see all the cool things you can do with your Images: Go to your Image From the Left Navigation Menu, Click on Editor Page You can see all the Editor Options that you can perform on this Image. You can see the dimensions like the width and the height of the original image just above the options : Zoom-in and Zoom-out You can Zoom-in or Zoom-out using the first button group as follows: Rotat

Score: 2.2020109

Gitana / 4.0 / Forms / API / Ordering

Ordering The default rendering engine that Alpaca utilizes will render your fields in the order that they are described within your schema. {% raw %} {% endraw %} Use the order option to specify rendering order The precise order of properties can be configured using the order option. {% raw %} {% endraw %} Use a Template to layout fields See Templates for more information on using custom templates to take full control over the layout of your forms.

Score: 2.1917133