Skip to Main Content

Overview

Timeline is a theme component new in APEX 23.1 that is useful for displaying a series of events. It can be used to showcase the history of a given widget, recent updates, or new interactions within an application.

Instructions

  1. In Page Designer, select a region
  2. Go to the Property Editor
  3. Under the Region tab
    1. Find Identification → Type, use
    2. Find Appearance → Template, use Blank with Attributes (No Grid)

Demo

  • Pam King 04-APR-25
    Open

    Investigate new Virus Protection software

    Maintain Support Systems

  • Russ Sanders 05-FEB-25
    On-Hold

    Arrange for vacation coverage

    Maintain Support Systems

  • Al Bines 05-FEB-25
    Closed

    HR Support Systems

    Maintain Support Systems

  • Pam King 05-FEB-25
    On-Hold

    HR software upgrades

    Maintain Support Systems

  • John Watson 02-APR-25
    Open

    Implement in Production

    Load Software

Sample SQL Query

select t.ID,
       t.PROJECT,
       t.TASK_NAME,
       t.START_DATE,
       t.END_DATE,
       t.STATUS,
       t.ASSIGNED_TO,
       p.project as PROJ_NAME,
       case t.STATUS
         when 'Closed'  then 'fa-check-circle-o'
         when 'Open'    then 'fa-exclamation-triangle-o'
         when 'Pending' then 'fa-info-circle-o'
         else 'fa-exclamation-circle-o'
       end BADGE_ICON,
       case t.STATUS
         when 'Closed'  then 'success'
         when 'Open'    then 'danger'
         when 'Pending' then 'info'
         else 'warning'
       end BADGE_COLOR
  from EBA_UT_CHART_TASKS t,
       EBA_UT_CHART_PROJECTS p
  where t.project = p.id
  order by p.created