Jigx Concepts

Jigx uses concepts, terminology, and elements you might not be familiar with. Below is an explanation of the main core concepts to help you understand and use Jigx better.

Jigx Solutions

Jigx refers to a native mobile app as a solution. With Jigx you can build and publish more than one solution to your Jigx mobile app. You can switch between solutions by tapping the More ellipsis icon in the navigation bar and selecting your desired solution. The currently active solution is highlighted with a checkmark icon. If only one solution is available, the More icon is hidden.

Home Hub

The home hub is the first screen you see when you open and sign into the Jigx mobile app. The Home Hub can display navigational menu blocks called grid-items, containing images, widgets, or custom controls. Once you tap on a grid-item, you are directed to a jig, which is a screen used to display various forms of content. The index.jigx file is the place to configure the bottom navigation bar. In addition to grid-items, you can style the Home Hub by adding a video-player or carousel at the top of the Home Hub. For more information, see Home Hub and Creating a Home Hub.

Jigx Builder

Native mobile solutions are built in Microsoft Visual Studio Code, a development environment installed on many platforms, including Windows and Mac. Jigx extends VS Code with the Jigx Builder, which is an extension that allows you to build, test, and publish Jigx mobile app solutions. The Jigx Builder extension uses YAML, SQL, JSON, and JSONata. A YAML editor is provided that includes IntelliSense, which allows for code completion by simultaneously pressing the control and spacebar (ctrl+space) keys. Only valid options in the current cursor context are displayed in the code popup. There is built-in debugging functionality to assist with troubleshooting your development. Predefined code snippets are provided in the .jigx files to help make development easier and faster. The Jigx Builder loads with a folder structure to categorize the various files needed to build app solutions. These folders are actions, assets, databases, datasources, functions, jigs, and translations.

index.jigx file

The index.jigx file is located at the root of the Jigx solution project in the Jigx Builder. In the index.jigx file, you configure what must be displayed on the home screen (Home Hub) of your solution on the Jigx mobile app. The file opens with a pre-populated code snippet to help you configure the Home Hub. For more information, see Index settings, and Creating a Home Hub.

Widgets

Widgets are navigational menu blocks set up on jigs, allowing them to be utilized in various parts of the solution, including the Home Hub and multiple jigs (screens). These widgets are configurable to display various UI elements, such as locations, images, charts, and more. For more information, see Content widget components.

Jig

A jig is a container used to configure content. A jig can be configured as a calendar, a form to capture or view data, a PDF or HTML document, a list of data, or even a combination of any one of these. Usually, tapping on a widget in the Home Hub opens a jig. For more information, see Jigs (screens) and Jig Types sections in this guide.

Components

Components are elements that can be used when creating a Jigx solution in the Jigx Builder. These elements provide an incredible amount of functionality. Components include interactive images, video players, expanders, and charts. For more information, see Components (controls) and Components example topics in this guide.

Actions

Actions allow you to do something, for example, go back to a previous screen, open a URL, or submit a form. For more information on the available actions as well as code samples for each one, see the actions and action examples sections of this guide.

Functions

Functions enable integration with other platforms through data providers. Creating a new function using one of the provided template options adds the skeleton code to the function definition, making it easier to configure with their authentication requirements. For more information, see REST Functions, SOAP Functions, and SQL Functions.

Expressions

Expressions allow you to structure data before binding it to the UI components. Expressions are JSONata language-based. JSONata is a lightweight query and transformation language for JSON data. JSONata is a rich complement of built-in operators and functions providing options to manipulate and combine data. Learn more about JSONata and try out your expressions in their JSONata Exerciser. The root element of Expressions in .jigx files starts with "@ctx" vs. "$." in JSONata Exerciser (e.g., @ctx.data vs. $.data). Jigx supports shorthand $ expressions for JSONata. For more information, see Expressions, Expressions - cheatsheet and Expression examples.

Datasources

Datasources are sets of data that are available throughout your whole solution (global) or only inside a jig (local). Datasources can be static or dynamic. Jigx Dynamic Data is a built-in database that can be used to create, read, update, and delete data in an app. The underlying data store for Dynamic Data is a NoSQL store. This means that each record can have its own field structure, and you can add or remove any fields on a per-record basis. Only the id column is a system column and cannot be changed or removed from the record. Jigx Dynamic Data is managed in Jigx Management. For more information, see Dynamic Data and Dynamic Data examples .

Database

A data provider is a service that accepts data inputs and returns data outputs. Jigx data providers include dynamic, local, REST, Salesforce, SOAP and SQL. For more information see Data Providers and Data Provider examples.

Entities

Entities are tables in Jigx Dynamic Data or other databases where your data gets saved, created, updated, and deleted. Use an action such as execute-entity to work with the data. Jigx data is managed in the Data menu option in Jigx Management. Other databases are managed using the connections, SQL Functions, REST Functions, and SOAP Functions in Jigx Management. For more information, see execute-entity.

Jigx Management

Jigx Management exposes the Jigx Cloud functionality in a browser-based portal allowing you to manage users and solutions, set up send-and-push notifications, set up data, and view usage metrics of your organization. For more information, see Management Overview.

Jigx App

The Jigx app is available on iOS and Android and works on any device.

See Also

Last updated

Was this helpful?