Found 306 results for "ui projects project-create"

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

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

team-subcontext [ { "evaluator": "context-team", "config": { "team-subcontext": { "items": [ { "key": "team", "title": "Team", "order": 1000, "header": true, "items": [ { "key": "team/view", "title": "Overview", "uri": "#/projects/{projectId}/teams/{teamId}", "order": 1000 }, { "key"

Score: 2.0309331

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

release-subcontext [ { "evaluator": "context-workspace-has-pending-merges", "config": { "release-subcontext": { "items": [ { "key": "release/workspaces", "items": [ { "key": "release/merges", "title": "Pending Merges", "uri": "#/projects/{projectId}/releases/{releaseId}/merges", "iconClass": "fa fa-angle-right", "order": 32000 }

Score: 2.0278323

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

release-subcontext [ { "evaluator": "context-workspace-has-pending-merges", "config": { "release-subcontext": { "items": [ { "key": "release/workspaces", "items": [ { "key": "release/merges", "title": "Pending Merges", "uri": "#/projects/{projectId}/releases/{releaseId}/merges", "iconClass": "fa fa-angle-right", "order": 32000 }

Score: 2.0278323

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

dataview-subcontext [ { "evaluator": "context-dataview", "config": { "dataview-subcontext": { "items": [ { "key": "dataview", "title": "Data View", "header": true, "order": 1000, "items": [ { "key": "dataview/view", "title": "View", "uri": "#/projects/{projectId}/dataviews/{reportId}", "order": 100 },

Score: 2.0248518

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

dataview-subcontext [ { "evaluator": "context-dataview", "config": { "dataview-subcontext": { "items": [ { "key": "dataview", "title": "Data View", "header": true, "order": 1000, "items": [ { "key": "dataview/view", "title": "View", "uri": "#/projects/{projectId}/dataviews/{reportId}", "order": 100 },

Score: 2.0248518

Gitana / 3.2 / Guide / Guide / UI Developers Guide / Contexts / platform-context

platform-context [ { "evaluator": "context-platform", "config": { "platform-context": { "items": [ { "key": "platform/dashboard", "title": "Platform Dashboard", "uri": "#/", "cssClass": "dashboard-link", "order": 1000, "dashboardHeader": true, "iconClass": "fa fa-dashboard" }, { "key": "platform/projects", "title": "Projects",

Score: 2.0218248

Gitana / 4.0 / Developers / User Interface Customization / Contexts / platform-context

platform-context [ { "evaluator": "context-platform", "config": { "platform-context": { "items": [ { "key": "platform/dashboard", "title": "Platform Dashboard", "uri": "#/", "cssClass": "dashboard-link", "order": 1000, "dashboardHeader": true, "iconClass": "fa fa-dashboard" }, { "key": "platform/projects", "title": "Projects",

Score: 2.0218248

Gitana / 3.2 / Guide / Guide / UI Developers Guide / Actions / change-password

change-password ID: change-password This action brings up a modal that provides a logged in user with a means to change their own password. Sample Code var UI = require("ui"); var actionContext = {}; actionContext.user = observableHolder.observable("user").get(); UI.startAction(observableHolder, "change-password", actionContext, function(err) { // all done });

Score: 2.017838

Gitana / 4.0 / Developers / User Interface Customization / Actions / change-password

change-password ID: change-password This action brings up a modal that provides a logged in user with a means to change their own password. Sample Code var UI = require("ui"); var actionContext = {}; actionContext.user = observableHolder.observable("user").get(); UI.startAction(observableHolder, "change-password", actionContext, function(err) { // all done });

Score: 2.017838

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.0148833

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.0148833

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.0130856

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.0127428

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.0127428

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.0041456

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.0041456

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.0038507

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.0038507

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.9978762

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.9978762

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.9906378

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.9906378

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.9906378

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.9906378

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.9893942