Skip to Main Content

Overview

Content Row is a theme component that is suitable for displaying most types of content. This component features a column for an icon, title and description, miscellaneous attributes, and actions.

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

  • Task

    Arrange for vacation coverage

    Project: Maintain Support Systems
    On-Hold
    Edit
  • Task

    HR software upgrades

    Project: Maintain Support Systems
    On-Hold
    Edit
  • Task

    HR Support Systems

    Project: Maintain Support Systems
    Closed
    Edit
  • Task

    Investigate new Virus Protection software

    Project: Maintain Support Systems
    Open
    Edit
  • Task

    Customize solutions

    Project: Load Software
    Open
    Edit

Sample SQL Query

select t.ID,
       t.PROJECT,
       t.PARENT_TASK,
       t.TASK_NAME,
       t.START_DATE,
       t.END_DATE,
       t.STATUS,
       t.ASSIGNED_TO,
       p.project as proj_name,
       case t.status
         when 'Open'    then 'fa-exclamation-circle-o'
         when 'Closed'  then 'fa-check-circle u-success-text'
         when 'On-Hold' then 'fa-minus-circle u-danger-text'
         when 'Pending' then 'fa-exclamation-triangle u-warning-text'
       end icon_class
  from EBA_UT_CHART_TASKS t,
       EBA_UT_CHART_PROJECTS p
  where t.project = p.id
  order by p.created