U
U
UI Framework Developer Guide
Search…
7.30
Overview of C3 AI UI Framework
Overview of UI IDE
Set Up Developer Enviroment
Set up UI Framework
Set up UI IDE
Set up UI Demo
Fundamentals
Manage Application State
Directory and File Name and Structure Conventions
Understand Translations
Translate Application
Monitor UI deployment
Component Library
Available Components
Styling
Themes Templates
Density Templates
Custom Templates
Tutorial - Create your mini app
Tutorial - Create a mini-app with UI Framework
Tutorial - Create a Home Page with Navigation Bar
Tutorial - Add a Table to the Home page
Tutorial - Create Dynamic Page and a Redirect Link
Tutorial - Add a pre-filled form component
Tutorial - Translate your application
Tutorial - UI view and permissions
Powered By
GitBook
Monitor UI deployment
UiBundler generates code bundles for front-end code delivery to browsers. Bundling takes a few minutes.
UiBundler console commands
Check the latest bundling status:
1
UiBundler.latestStatus();
Copied!
The
C3.typesys.Obj
has several fields that can have different values.
Field
Value
Meaning
status
'running'
UiBundler is processing. Wait until the UiBundler is completed.
status
'completed'
UiBundler is completed.
status
'canceled'
UiBundler is canceled.
errors
'Array(1)'
UiBundler received an error. You can see the error message by expanding the array.
bundleStatuses
' Array(0)'
When you run the command to check the latest bundling status, this array should populate.
Force bundling to start:
1
UiBundler.generateBundles()
Copied!
Manually create and run a bundling job:
1
UiBundler.make({runAsUser: true, id: "MyBundlerJob"}).upsert().start();
Copied!
Cancel any existing jobs:
1
UiBundler.cancelJobsInNonFinalStatus();
Copied!
Remove all jobs:
1
UiBundler.removeAll();
Copied!
Remove bundle results:
1
UiBundlerResult.removeAll()
Copied!
Fundamentals - Previous
Translate Application
Next - Component Library
Available Components
Last modified
2mo ago
Export as PDF
Copy link