Versions Compared

Key

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

...

  • Bootstrap3 (default)
  • Bootcards
  • Dashboard
  • / Forms

In the following paragraphs more information will be given on the mentioned themes.

...

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 dashboard is the former default theme. It is part of version 1 of the MVC UI styling.

...

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. 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).

Configuration

...

UI Expand
titleJava

Add the following to

Include Page
_PropertiesFileJava
_PropertiesFileJava

...

. Note that mvc.themes can contain a list of comma separated themes.

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

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

 

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

Forms

The theme 'forms' had been the standard for MVC UI. This theme contains all default Blueriq UI components and standard functionality for e.g. flowing and refreshes. Note that this theme does not support dashboard styling.

Enable

...

UI Expand
title.NET

Add the following to

Include Page
_

...

PropertiesFileNet
_

...

PropertiesFileNet
.

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

...

"/>
  </themes>
</mvc>

Forms

The theme 'forms' had been the standard for MVC UI. This theme contains all default Blueriq UI components and standard functionality for e.g. flowing and refreshes. Note that this theme does not support dashboard styling.

Enable

...

Configuration

UI Expand
titleJava

Add the following to

Include Page
_PropertiesFileJava
_PropertiesFileJava
. Note that mvc.themes can contain a list of comma separated themes.

Code Block
mvc.developmentMode=false
mvc.versionUsed=v1
mvc.themes=forms

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

...

UI Expand

...

title

 

 

 

 

 

 

 

 

 

...

.NET

Add the following to

Include Page
_PropertiesFileNet
_PropertiesFileNet
.

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