Found 426 results for "ui projects search"

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

Gitana / 3.2 / Guide / Guide / Content Modeling / Content Model Builder / Create A New Content Type

Create A New Content Type In the Content Model Builder, you can create a new Content Type. Click button "Create Content Type" near the top left: Then give your content type a name in the pop up modal: Hit "Create" and the new content model will open in the Content Model Builder: As you can see there are two tabs -- "UI" and "JSON". Cloud CMS provides you with two ways to build in the content type builder. If you are an editor and fancy building it with simple actions like drag and drop, UI build

Score: 2.0146086

Gitana / 4.0 / Data Engine / Content Models / Content Model Builder / Create A New Content Type

Create A New Content Type In the Content Model Builder, you can create a new Content Type. Click button "Create Content Type" near the top left: Then give your content type a name in the pop up modal: Hit "Create" and the new content model will open in the Content Model Builder: As you can see there are two tabs -- "UI" and "JSON". Cloud CMS provides you with two ways to build in the content type builder. If you are an editor and fancy building it with simple actions like drag and drop, UI build

Score: 2.0146086

Customizing the Cloud CMS User Interface

Cloud CMS is incredibly powerful and feature rich. This is great except that in exposing all the powerful features the UI can easily appear cluttered and difficult to use. We recently added the ability to customize the UI to declutter, simplify, and make more familiar. Navigation The UI has been simplified to make navigation easier. The number of left-hand menu options has decreased because of the new “Manage Platform” and “Manage Project” sections. These two new sections have moved all of the a

Score: 2.0128386

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

workspace-subcontext [ { "evaluator": "context-branch-is-master", "config": { "workspace-subcontext": { "items": [ { "key": "workspace/changes", "title": "Changes", "order": 20000, "header": true, "items": [ { "key": "workspace/activities", "remove": true }, { "key": "workspace/content", "remove": t

Score: 2.012608

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

workspace-subcontext [ { "evaluator": "context-branch-is-master", "config": { "workspace-subcontext": { "items": [ { "key": "workspace/changes", "title": "Changes", "order": 20000, "header": true, "items": [ { "key": "workspace/activities", "remove": true }, { "key": "workspace/content", "remove": t

Score: 2.012608

Gitana / 3.2 / Guide / Guide / UI Developers Guide / Actions / delete_access_policies

delete_access_policies ID: delete_access_policies This pops up a modal to ask the user if they'd like to delete the specified Access Policies. Upon confirmation, the Access Policies are deleted. Sample Code var UI = require("ui"); var actionContext = {}; actionContext.data = [policyId1, policyId2]; UI.startAction(observableHolder, "delete_access_policies", actionContext, function(err) { // if something went wrong, err will contain the error // otherwise, success });

Score: 2.004035

Gitana / 4.0 / Developers / User Interface Customization / Actions / delete_access_policies

delete_access_policies ID: delete_access_policies This pops up a modal to ask the user if they'd like to delete the specified Access Policies. Upon confirmation, the Access Policies are deleted. Sample Code var UI = require("ui"); var actionContext = {}; actionContext.data = [policyId1, policyId2]; UI.startAction(observableHolder, "delete_access_policies", actionContext, function(err) { // if something went wrong, err will contain the error // otherwise, success });

Score: 2.004035

Gitana / 3.2 / Guide / Guide / UI Developers Guide / Contexts / publishing-manage-subcontext

publishing-manage-subcontext [ { "evaluator": "context-project", "config": { "publishing-manage-subcontext": { "items": [ { "key": "project/publishing", "title": "Publishing", "header": true, "items": [ { "key": "project/publishing/settings", "title": "Settings", "uri": "#/projects/{projectId}/manage/publishing", "iconClass": "fa fa-angle

Score: 2.0037541

Gitana / 4.0 / Developers / User Interface Customization / Contexts / publishing-manage-subcontext

publishing-manage-subcontext [ { "evaluator": "context-project", "config": { "publishing-manage-subcontext": { "items": [ { "key": "project/publishing", "title": "Publishing", "header": true, "items": [ { "key": "project/publishing/settings", "title": "Settings", "uri": "#/projects/{projectId}/manage/publishing", "iconClass": "fa fa-angle

Score: 2.0037541

Gitana / 3.2 / Guide / Guide / Supported Stacks

Supported Stacks Cloud CMS certifies certain supported stacks for on-premise Cloud CMS 3.2 installations. This information is relevant to customers who run Cloud CMS 3.2 on-premise and manage their own Elastic Search and MongoDB database tiers. This information is not applicable to SaaS customers since Cloud CMS runs that infrastructure for hosted subscribers. The following links provide detailed information on the combinations of operating systems, databases, application servers, bundled compon

Score: 2.0012162

Gitana / 4.0 / Self Managed / Supported Stacks / Overview

Supported Stacks Gitana certifies certain supported stacks for on-premise Gitana 4.x installations. This information is relevant to customers who run Gitana 4.x on-premise and manage their own Elastic Search and MongoDB database tiers. This information is not applicable to SaaS customers since Gitana runs that infrastructure for hosted subscribers. The following links provide detailed information on the combinations of operating systems, databases, application servers, bundled components and thi

Score: 2.0012162

What is the reason for "Failed to index node"?

If you scan your log entries and see "Failed to index node", this indicates that Elastic Search failed to update its index for a node. Cloud CMS tells Elastic Search to updates its index whenever a node is created or updated. When a node is deleted, Cloud CMS tells Elastic Search to remove the node from its index. This error message means that Elastic Search failed to update the index and therefore the index wasn't updated. If you open up the error, you may see further information that indicates

Score: 2.0000763

Gitana / 3.2 / Guide / Guide / Platform

Platform Cloud CMS provides a Platform within which you can build out one or more Projects to create, manage and deliver your content. You can create as many Projects as you wish and are also free to duplicate, back up, download or export Projects at any time. Users You can add users to your Platform at any time. When users log in, they log in to the Platform and are then able to see all of the Projects that they have access to. You may choose to invite some users to have some permissions agains

Score: 1.9977262

Gitana / 4.0 / Data Engine / Platform / Overview

Platform Cloud CMS provides a Platform within which you can build out one or more Projects to create, manage and deliver your content. You can create as many Projects as you wish and are also free to duplicate, back up, download or export Projects at any time. Users You can add users to your Platform at any time. When users log in, they log in to the Platform and are then able to see all of the Projects that they have access to. You may choose to invite some users to have some permissions agains

Score: 1.9977262

Gitana / 3.2 / Guide / Guide / UI Developers Guide / Actions / assign_access_policy

assign_access_policy ID: assign_access_policy Brings up a popup modal that lets the user select an access policy using an Access Policy Picker. The selected access policy is handed back on the callback. Sample Code var UI = require("ui"); var actionContext = {}; actionContext.ref = node.ref(); // "node://platformId/repositoryId/branchId/nodeId"; UI.startAction(observableHolder, "assign_access_policy", actionContext, function(err) { // if something went wrong, err will contain the error

Score: 1.9905131

Gitana / 3.2 / Guide / Guide / UI Developers Guide / Actions / create_access_policy

create_access_policy ID: create_access_policy Brings up a multi-step wizard that guides a user through the process of creating an Access Policy. The resulting access policy is handed back in the callback. Sample Code var UI = require("ui"); var actionContext = {}; UI.startAction(observableHolder, "create_access_policy", actionContext, function(err, accessPolicyId) { // if something went wrong, err will contain the error // otherwise, success // the created access policy ID is hand

Score: 1.9905131

Gitana / 4.0 / Developers / User Interface Customization / Actions / assign_access_policy

assign_access_policy ID: assign_access_policy Brings up a popup modal that lets the user select an access policy using an Access Policy Picker. The selected access policy is handed back on the callback. Sample Code var UI = require("ui"); var actionContext = {}; actionContext.ref = node.ref(); // "node://platformId/repositoryId/branchId/nodeId"; UI.startAction(observableHolder, "assign_access_policy", actionContext, function(err) { // if something went wrong, err will contain the error

Score: 1.9905131

Gitana / 4.0 / Developers / User Interface Customization / Actions / create_access_policy

create_access_policy ID: create_access_policy Brings up a multi-step wizard that guides a user through the process of creating an Access Policy. The resulting access policy is handed back in the callback. Sample Code var UI = require("ui"); var actionContext = {}; UI.startAction(observableHolder, "create_access_policy", actionContext, function(err, accessPolicyId) { // if something went wrong, err will contain the error // otherwise, success // the created access policy ID is hand

Score: 1.9905131

Gitana / 3.2 / Guide / Guide / UI Developers Guide / Contexts / content-model-associations-list-item-actions

content-model-associations-list-item-actions [ { "config": { "content-model-associations-list-item-actions": [ { "key": "edit-document", "link": "/#/projects/{{project._doc}}/model/associations/{{_qname}}/properties", "iconClass": "fa fa-pencil" }, { "key": "view-json", "link": "/#/projects/{{project._doc}}/model/associations/{{_qname}}/json", "iconClass": "fa fa-code" }, { "

Score: 1.9893135

Gitana / 3.2 / Guide / Guide / UI Developers Guide / Contexts / content-model-features-list-item-actions

content-model-features-list-item-actions [ { "config": { "content-model-features-list-item-actions": [ { "key": "edit-document", "link": "/#/projects/{{project._doc}}/model/features/{{_qname}}/properties", "iconClass": "fa fa-pencil" }, { "key": "view-json", "link": "/#/projects/{{project._doc}}/model/features/{{_qname}}/json", "iconClass": "fa fa-code" }, { "key": "content-i

Score: 1.9893135

Gitana / 3.2 / Guide / Guide / UI Developers Guide / Contexts / content-model-types-list-item-actions

content-model-types-list-item-actions [ { "config": { "content-model-types-list-item-actions": [ { "key": "edit-properties", "link": "/#/projects/{{project._doc}}/model/types/{{_qname}}/properties", "iconClass": "fa fa-pencil" }, { "key": "view-json", "link": "/#/projects/{{project._doc}}/model/types/{{_qname}}/json", "iconClass": "fa fa-code" }, { "key": "content-instances",

Score: 1.9893135

Gitana / 4.0 / Developers / User Interface Customization / Contexts / content-model-associations-list-item-actions

content-model-associations-list-item-actions [ { "config": { "content-model-associations-list-item-actions": [ { "key": "edit-document", "link": "/#/projects/{{project._doc}}/model/associations/{{_qname}}/properties", "iconClass": "fa fa-pencil" }, { "key": "view-json", "link": "/#/projects/{{project._doc}}/model/associations/{{_qname}}/json", "iconClass": "fa fa-code" }, { "

Score: 1.9893135

Gitana / 4.0 / Developers / User Interface Customization / Contexts / content-model-features-list-item-actions

content-model-features-list-item-actions [ { "config": { "content-model-features-list-item-actions": [ { "key": "edit-document", "link": "/#/projects/{{project._doc}}/model/features/{{_qname}}/properties", "iconClass": "fa fa-pencil" }, { "key": "view-json", "link": "/#/projects/{{project._doc}}/model/features/{{_qname}}/json", "iconClass": "fa fa-code" }, { "key": "content-i

Score: 1.9893135

Gitana / 4.0 / Developers / User Interface Customization / Contexts / content-model-types-list-item-actions

content-model-types-list-item-actions [ { "config": { "content-model-types-list-item-actions": [ { "key": "edit-properties", "link": "/#/projects/{{project._doc}}/model/types/{{_qname}}/properties", "iconClass": "fa fa-pencil" }, { "key": "view-json", "link": "/#/projects/{{project._doc}}/model/types/{{_qname}}/json", "iconClass": "fa fa-code" }, { "key": "content-instances",

Score: 1.9893135

Gitana / 3.2 / Guide / Guide / UI Developers Guide / Actions / unassign_access_policy

unassign_access_policy ID: unassign_access_policy This pops up a modal to ask the user if they'd like to unassign the specified Access Policies. Upon confirmation, the Access Policies are unassigned from the target (specified by ref). Sample Code var UI = require("ui"); var actionContext = {}; actionContext.data = [policyId1]; actionContext.ref = node.ref(); // "node://platformId/repositoryId/branchId/nodeId"; UI.startAction(observableHolder, "unassign_access_policy", actionContext, function(er

Score: 1.9838203