
Configuration options
Core structure
Other options
Considerations
Examples and code snippets
Basic print action

title: Welcome
description: Provide you details
type: jig.default
header:
type: component.jig-header
options:
height: small
children:
type: component.image
options:
source:
uri: https://images.unsplash.com/photo-1584931423298-c576fda54bd2?w=800&auto=format&fit=crop&q=60&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTR8fGdsb2JhbHxlbnwwfHwwfHx8MA%3D%3D
children:
- type: component.section
options:
title: Details
children:
- type: component.form
instanceId: inputValues
options:
children:
- type: component.text-field
instanceId: firstName
options:
initialValue: John Smith
label: First name
isRequired: false
- type: component.email-field
instanceId: email
options:
initialValue: [email protected]
label: Email address
- type: component.number-field
instanceId: phoneNumber
options:
initialValue: 23445634556
label: Mobile number
actions:
- children:
# Add the print action.
- type: action.print
options:
# Give the action button a title.
title: Print Form
# Provide the HTML content to be printed.
html: <html>
<body>
<header>
<h1>Global Inc Portal</h1>
<p>Your mobile hub for work on the go</p>
</header>
<main>
<div class="container">
<div class="card">
<h2>Welcome, Global Worker!</h2>
<p>This portal is designed just for you—the modern worker who needs access to resources and updates anytime, anywhere.</p>
<a href="https://jigx.com/" class="cta-button">Learn More</a>
</div>
<div class="card" id="features">
<h2>Features</h2>
<ul>
<li>Real-time schedule updates</li>
<li>Access to company resources on the go</li>
<li>Easy team communication</li>
<li>Mobile-friendly tools and dashboards</li>
</ul>
</div>
<div class="card">
<h2>Get Started</h2>
<p>If you're new here, simply sign in to access your personalized dashboard and start exploring our tools designed to support your work on the move.</p>
</div>
</div>
</main>
<footer>
<p>© 2025 Global Worker Portal. All rights reserved.</p>
</footer>
</body>
</html>Print with web-view component
Document jig with print action

Print action in a jig header

Last updated
Was this helpful?