Versions Compared

Key

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

Introduction

x

Themes

 

The theme 'bootstrap3' is the default theme for all projects. This 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.

...

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

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

 

 

-----------

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.

Enable

You have to add the theme to your configuration to enable it.

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.versionUsed=v2
mvc.themes=bootcards

mvc.bootcards.templateGroupFile=UI/mvc/v2/bootcards.stg
mvc.bootcards.templateName=main
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>

 

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