DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Related

  • Performance Optimization Techniques in Flutter 3.41 for Mobile App Development
  • GraphQL vs REST — Which Is Better?
  • 5 Challenges and Solutions in Mobile App Testing
  • Scaling QA Processes for Enterprise App Development: A Practical Guide

Trending

  • Containerizing and Testing a Python Backtesting System With Docker and GitHub Actions
  • I Built a Java Version Manager by Fixing Other Tools' Open Bugs
  • Retrieval Augmented Generation With Spring AI 2.0, Claude, and PGvector
  • No Observability Tool Is the “Best”

Adding Off Canvas Layout to a Visual Builder Application [Video]

In this video tutorial, we take a look at how to add this popular UI layout choice using a built-in component in Oracle JET.

By 
Shay Shmeltzer user avatar
Shay Shmeltzer
·
Nov. 12, 18 · Tutorial
Likes (1)
Comment
Save
Tweet
Share
9.1K Views

Join the DZone community and get the full member experience.

Join For Free

Off Canvas layout is a common UI pattern for modern applications, especially on mobile devices. The concept is aimed at saving space on your page, allowing you to pop out a "drawer" of additional information. This helps reduce clutter on the main page but still provide access to important data when needed without leaving the page context. You can see an example of the runtime behavior at the top of this post.

Oracle JET provides this type of "off-canvas" behavior as a built in component, and they have a demo of it working as part of the cookbook here.

In the video below I show you how to add this to a Visual Builder application. As always, you can mostly just copy and paste code from the JET cookbook, but you need to handle some of the importing of resources a little different, and use the Visual Builder approach for adding your JavaScript function.


The code used in the video is:

Page source:

<div class="oj-offcanvas-outer-wrapper">
  <div id="startDrawer" class="oj-offcanvas-start oj-panel oj-panel-alt5 oj-offcanvas-overlay-shadow" style="width: 200px">
    <div class="oj-flex">
      <h2 id="h1-1660298733-2" class="oj-flex-item oj-sm-12 oj-md-12 selectionShareable">Menu</h2>
    </div>
    <div class="oj-flex">
      <span class="oj-flex-item oj-sm-12 oj-md-1 vb-icon vb-icon-list" id="span-1660298733-1"></span>
      <oj-label id="oj-label-1660298733-1" class="oj-flex-item oj-sm-12 oj-md-3">List</oj-label>
    </div>
    <div class="oj-flex">
      <span class="oj-flex-item oj-sm-12 oj-md-1 vb-icon vb-icon-pie" id="span-1660298733-2"></span>
      <oj-label id="oj-label-1660298733-2" class="oj-flex-item oj-sm-12 oj-md-3">chart</oj-label>
    </div>
  </div>
  <div id="mainContent" class="demo-main-content">
    <div class="oj-flex">
      <span class="oj-flex-item oj-sm-12 oj-md-1 vb-icon vb-icon-hamburger-menu" id="span-1660298733-3" on-click="[[$listeners.span16602987333Click]]"></span>
      <h2 id="h1-1660298733-1" class="oj-flex-item oj-sm-12 oj-md-10 selectionShareable">Gifts</h2>
    </div>
    <div class="oj-flex">
      <hr id="hr-1660298733-1" class="oj-flex-item oj-sm-12 oj-md-12">
    </div>
    <div class="oj-flex">
      <oj-list-view id="oj-list-view-1660298733-1" class="oj-flex-item oj-sm-12 oj-md-12" data="[[$page.variables.giftsListSDP]]">
        <template slot="itemTemplate">
            <oj-vb-list-item>
                <img slot="image" :src="[[$current.data.picture]]" width="32" height="32">
                <p slot="title1">
                    <oj-bind-text value="[[$current.data.product]]"></oj-bind-text>
                </p>
                <p slot="value1">
                    <oj-bind-text value="[[$current.data.cost]]"></oj-bind-text>
                </p>
                <p slot="title2">
                    <oj-bind-text value="[[$current.data.sKU]]"></oj-bind-text>
                </p>
            </oj-vb-list-item>
        </template>
      </oj-list-view>
    </div>
  </div>
</div>

JavaScript function in the page:

define(['ojs/ojcore'], function(oj) {
  'use strict';

  var PageModule = function PageModule() {};

  PageModule.prototype.showSide = function() {
    var offcanvas = {
      "selector": "#startDrawer",
      "content": "#mainContent",
      "edge": "start",
      "displayMode": "push",
      "size": "200px"
    };

    oj.OffcanvasUtils.open(offcanvas);

  }

  return PageModule;
});

and in your page JSON file add this import:

"oj-offCanvas": {
  "path": "ojs/ojoffcanvas"
}
mobile app

Published at DZone with permission of Shay Shmeltzer. See the original article here.

Opinions expressed by DZone contributors are their own.

Related

  • Performance Optimization Techniques in Flutter 3.41 for Mobile App Development
  • GraphQL vs REST — Which Is Better?
  • 5 Challenges and Solutions in Mobile App Testing
  • Scaling QA Processes for Enterprise App Development: A Practical Guide

Partner Resources

×

Comments

The likes didn't load as expected. Please refresh the page and try again.

  • RSS
  • X
  • Facebook

ABOUT US

  • About DZone
  • Support and feedback
  • Community research

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 215
  • Nashville, TN 37211
  • [email protected]

Let's be friends:

  • RSS
  • X
  • Facebook