Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
mvc.versionUsed=v2
mvc.themes=bootstrap3

mvc.bootstrap3.templateGroupFile=UI/mvc/v2/bootstrap3.stg
mvc.bootstrap3.templateName=main

 

 

-----------

Bootcards

The bootcards theme is designed specifically for mobile applications, but it runs on desktops as well. More information on this theme can be found at bootcards.org.

...

UI Expand
title.NET

Add the following to

Include Page
_PropertiesFileNet
_PropertiesFileNet
.

Code Block
<mvc developmentMode="false" versionUsed="v2">
  <themes>
    <theme name="bootcards" templateGroupFile="UI/mvc/v2/bootcards.stg" templateName="main"/>
  </themes>
</mvc>

 

 ---------------------

Dashboard

The Blueriq dashboard theme is built on top of the default forms components used in the forms theme. The difference with the forms theme is that the dashboard theme supports multiple sessions: it consists out of a main session (the actual dashboard) and a session per widget. A widget can be added by the use of the AQ_DashboardFlowWidget container.

Info
For using this theme the Dashboard plugin is required.

Sessions

The dashboard session is the main session and is the session rendering the initial page. The main session creates a subscription to the SessionService, and for each of the widgets a new Blueriq session is created and registered to that same subscription. Whenever a page event is triggered on any of the sessions, all page events for all sessions will be returned to the client and distributed to the corresponding widget viewmodels. The widget models then process the page events and that causes the update to the widgets.

Widget Communication

Widgets can communicate with each other through the message bus. The message bus is available both server and client side: The server side message bus can be used for business logic while the client side message bus can be used for technical solutions (such as refreshing a widget on a particular event).

Enable

To enable this style, make sure the following lines are existing in your dashboard.properties (or in 

Include Page
_PropertiesFileJava
_PropertiesFileJava
).

Code Block
mvc.versionUsed=v1
mvc.themes=dashboard

mvc.dashboard.templateGroupFile=UI/mvc/v1/dashboard.stg
mvc.dashboard.templateName=main