Found 240 results for "docs fields checkbox"

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

Connectors

Gitana 4.0 / Content Engine / Content Models / Connectors

Documentation Reference

Create dynamic form fields by connecting AlpacaJS to Cloud CMS, streamlining your content management. (Gitana 4.0)

Score: 16.0704
Forms

Gitana 3.2 / Guide / Guide / Forms

Documentation Reference

Optimize your form experience with Cloud CMS and the Alpaca Forms Engine, offering customizable role-based and mobile-friendly forms. (Gitana 3.2)

Score: 15.8615
Overview

Gitana 4.0 / Forms

Documentation Reference

Optimize form creation with Cloud CMS. Enjoy role-based, schema-linked forms with enhanced features and user-friendly design. (Gitana 4.0)

Score: 15.8443
Overview

Gitana 4.0 / Forms / CMS

Documentation Reference

Explore comprehensive guides on creating effective forms to enhance user engagement and streamline data collection. (Gitana 4.0)

Score: 14.1005
Relator Properties

Gitana 4.0 / Content Engine / Content Models / Relator Properties

Documentation Reference

Enhance data connections with Cloud CMS relator properties, ensuring automated relationship management between content nodes. (Gitana 4.0)

Score: 12.182
Checkbox Field

Gitana 4.0 / Forms / Fields / Checkbox Field

Documentation Reference

Explore checkbox fields for forms, supporting boolean, string, or array data. Learn schema, options, and practical examples. (Gitana 4.0)

Score: 9.4881
Fields

Gitana 3.2 / Guide / Guide / Forms / Fields

Documentation Reference

Explore guides on form fields including Attachment Picker, CK Editor, and more for efficient web form creation. (Gitana 3.2)

Score: 8.2073
Fields

Gitana 4.0 / Forms / CMS / Fields

Documentation Reference

Explore comprehensive CMS field documentation, including guides on attachment pickers, CK Editor, file pickers, and more. (Gitana 4.0)

Score: 8.2073
Connectors

Gitana 3.2 / Guide / Guide / Content Modeling / Connectors

Documentation Reference

Connect your forms to Cloud CMS effortlessly with Alpaca field connectors and dynamic dropdowns. (Gitana 3.2)

Score: 7.1842
Custom Fields

Gitana 4.0 / Forms / API / Custom Fields

Documentation Reference

Create and customize fields using Alpaca's flexible library, perfect for your open-source projects and UI components. (Gitana 4.0)

Score: 7.0101
documents-list-sort-fields

Gitana 3.2 / Guide / Guide / UI Developers Guide / Contexts / documents-list-sort-fields

Documentation Reference

Sort your document list efficiently by title, description, date, author, type, and size with customizable fields. (Gitana 3.2)

Score: 5.4328
documents-list-sort-fields

Gitana 4.0 / Developers / User Interface Customization / Contexts / documents-list-sort-fields

Documentation Reference

Sort and manage your document list by title, description, date, author, type, or size for improved organization. (Gitana 4.0)

Score: 5.4328
Relator Properties

Gitana 3.2 / Guide / Guide / Content Modeling / Relator Properties

Documentation Reference

Optimize relationships in Cloud CMS with relator properties linking nodes in a dynamic content graph. (Gitana 3.2)

Score: 5.3332
How to get a content definition JSON from the Cloud CMS API?

How to get a content definition JSON from the Cloud CMS API?

Support Article

There are a couple of ways to do this. The first is simply use the node GET call and pass in the qname like this: GET /repositories/{repositoryId}/branches/{branchId}/nodes/{qname} http://api.cloudcms.com/docs#!/node/get_repositories_repositoryId_branches_branchId_nodes_nodeId This will give you back the JSON for the definition. Another way is to use this variation: GET /repositories/{repositoryId}/branches/{branchId}/definitions/{qname} http://api.cloudcms.com/docs#!/branch/get_repositories_rep

Score: 4.8644
How to limit the fields that come back in a query

How to limit the fields that come back in a query

Support Article

Query API calls like http://api.cloudcms.com/docs#!/node/post_repositories_repositoryId_branches_branchId_nodes_query support a parameter named _fields which defines an object specifying the node properties you want to include in the result set for matching nodes. For example in the following query I want the title, subTitle and slug fields returned: { "_type":"my:article", "_fields":{ "title":1, "subTitle":1, "slug":1 } } The result set would look something like the

Score: 4.3317
project-field-templates

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

Documentation Reference

Comprehensive project field templates for text, number, checkbox, radio, email, and more in one place. (Gitana 3.2)

Score: 4.2115
project-field-templates

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

Documentation Reference

Explore diverse project field templates for text, number, checkbox, dropdown, and more with easy customization. (Gitana 4.0)

Score: 4.2115
Forms

Gitana 4.0 / Getting Started / Working with Content / Forms

Documentation Reference

Enhance your content editing with dynamic, user-friendly forms powered by Cloud CMS and Alpaca.js. (Gitana 4.0)

Score: 4.141
Web Forms

Gitana 3.2 / Guide / Guide / Getting Started / Web Forms

Documentation Reference

Enhance content management with intuitive, auto-updating forms using Cloud CMS and Alpaca.js integration. (Gitana 3.2)

Score: 4.1117
Overview

Gitana 4.0 / Forms / Fields

Documentation Reference

Explore comprehensive documentation on diverse field types including address, email, date, checkbox, and more for form creation. (Gitana 4.0)

Score: 3.8704
Content Modeling Cookbook

Gitana 3.2 / Guide / Guide / Cookbooks / Content Modeling Cookbook

Documentation Reference

Discover essential patterns with our Content Modeling Cookbook. Start with code samples and object arrays. (Gitana 3.2)

Score: 3.4245
Is there a programmatic way to add more content to workflows?

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

Support Article

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: 3.4021
Content Modeling Cookbook

Gitana 4.0 / Developers / Cookbooks / Content Modeling Cookbook

Documentation Reference

Explore the Content Modeling Cookbook with examples and code samples for efficient data structuring and model integration. (Gitana 4.0)

Score: 3.3361
Option Tree Field

Gitana 4.0 / Forms / Fields / Option Tree Field

Documentation Reference

Option Tree Field enables dynamic user input with customizable selectors for efficient data entry and selection paths. (Gitana 4.0)

Score: 3.3218
How to Retrieve content by their document library path

How to Retrieve content by their document library path

Support Article

You can retrieve content by their document library path using the CMS API using the Node API. For example, you can paginate through the children of a node using this call: http://api.cloudcms.com/docs#!/node/get_repositories_repositoryId_branches_branchId_nodes_nodeId_children GET /repositories/{repositoryId}/branches/{branchId}/nodes/{nodeId}/children?path={path} In this case, you would set "nodeId" to the value "root" to indicate the root node. And then use "path" to describe the offset. If yo

Score: 3.0365