Difference between revisions of "General App Configuration Settings"

From Lianjapedia
Jump to: navigation, search
(HTML editor)
(3 intermediate revisions by the same user not shown)
Line 2: Line 2:
 
[[App Settings]], [[Command Line Switches]],  
 
[[App Settings]], [[Command Line Switches]],  
  
==Window Title==
+
==Additional file path==
The window title for this App.
+
A semi-colon (;) separated list of additional path locations to search for App specific files.
 +
* See also the [[Lianja#Methods|Lianja system object method]] Lianja.loadAddIns().
  
==Window Width==
+
==App CSS style==
The window width for this App.
+
Specify the global App CSS style for UI theming.
  
==Window Height==
+
* See [[CSS]].
The window height for this App.
+
  
==Maximize Window==
+
==Autoload libraries==
Maximize the window for this App(True | False).
+
If True, then libraries are auto loaded if a file of the same name as the directory exists in the additional file paths (True | False).
  
==Window Resizable==
+
* Any libraries that are auto loaded are monitored for changes and reloaded if changes are detected.
Allow the user to resize the App window (True | False).
+
  
==Hide Header Bar==
+
==CSS libraries==
Hide header bar at runtime (True | False).
+
The CSS libraries for this App. Separate each filename with a ; to specify more than one.
  
==Show navigation history==
+
* See [[CSS]].
Show pages navigation history buttons in page header.
+
  
* See [[Page Menu]].
+
==Desktop theme==
 +
Desktop theme for this App (Default | Android | iOS | Modern | Modern2 | ... (read from themes directory).
  
==Show navigation menu==
+
==Disable inline editing==
Show pages navigation menu in page header (True | False).
+
Disable inline editing (True | False).
  
* See [[Page Menu]].
+
==Disable VT requery when parentdatachanged==
 +
This will handle legacy VT usage prior to Lianja 6.3 (True | False).  From v6.3.
 +
* The [[Command Line Switches|command line switch]] --disableparentvtrequery can be used to start the App Builder and set this to True.  Once set, the command line switch is no longer required.
  
==Show Page Center==
+
==Help table==
Show Page Center when navigation menu clicked (True | False).
+
Context sensitive help table for this App.
  
* See [[Page Menu]].
+
* See [[Help Attributes]].
  
==Navigation menu caption==
+
==Hide Header Bar==
Navigation menu caption text in the page header.
+
Hide header bar at runtime (True | False).
  
 
==Hide header icons==
 
==Hide header icons==
 
Hide the header icons in the page header bars (True | False).
 
Hide the header icons in the page header bars (True | False).
  
==Desktop theme==
+
==Home page app==
Desktop theme for this App (Default | Android | iOS | Modern | Modern2 | ... (read from themes directory).
+
The App to load when the Home icon is clicked.
  
==Help table==
+
==HTML editor==
Context sensitive help table for this App.
+
Choose the HTML editor to use in this App (Desktop | Web | Mobile).
  
* See [[Help Attributes]].
+
From v9.0, the HTML editor for an individual [[Webview Section Attributes|WebView Section]] or [[Webview Gadget Attributes|WebView Gadget]] can also be set on the UI control itself to override the App-wide setting for desktop Apps.
 +
 
 +
==Include in HTML HEAD==
 +
Include HTML file contents into the HTML5 Client.
 +
 
 +
==Initial page==
 +
The first page to view for this App at runtime.
 +
 
 +
==Initial UI state==
 +
The initial UI state for this App. This will be applied to all pages, sections and fields/gadgets.
 +
 
 +
* See [[UI States]].
 +
 
 +
==Maximize Window==
 +
Maximize the window for this App(True | False).
  
 
==Meta types file==
 
==Meta types file==
Line 59: Line 74:
 
* See [[MetaTypes]].
 
* See [[MetaTypes]].
  
==CSS libraries==
+
==Navigation menu caption==
The CSS libraries for this App. Separate each filename with a ; to specify more than one.
+
Navigation menu caption text in the page header.
  
* See [[CSS]].
+
==Readonly fields backcolor==
 +
The background color that readonly fields should be displayed in.
  
==UI states table==
+
==Runtime connection==
UI states table for this App.
+
The connection string to use for 'local' virtual tables. This will be substituted when the App is deployed at runtime in the App Center or the Web/Mobile clients.
  
* See [[UI States]].
+
==Runtime database==
 +
The database that will be substituted when the App is deployed at runtime in the App Center or the Web/Mobile clients.
  
==Initial UI state==
+
==Show navigation history==
The initial UI state for this App. This will be applied to all pages, sections and fields/gadgets.
+
Show pages navigation history buttons in page header.
  
* See [[UI States]].
+
* See [[Page Menu]].
  
==Home page app==
+
==Show navigation menu==
The App to load when the Home icon is clicked.
+
Show pages navigation menu in page header (True | False).
  
==Initial page==
+
* See [[Page Menu]].
The first page to view for this App at runtime.
+
  
==HTML editor==
+
==Show Page Center==
Choose the HTML editor to use in this App (Desktop | Web | Mobile).
+
Show Page Center when navigation menu clicked (True | False).
  
==Runtime connection==
+
* See [[Page Menu]].
The connection string to use for 'local' virtual tables. This will be substituted when the App is deployed at runtime in the App Center or the Web/Mobile clients.
+
  
==Runtime database==
+
==UI states table==
The database that will be substituted when the App is deployed at runtime in the App Center or the Web/Mobile clients.
+
UI states table for this App.
  
==Include in HTML HEAD==
+
* See [[UI States]].
Include HTML file contents into the HTML5 Client.
+
  
==Readonly fields backcolor==
+
==Window Height==
The background color that readonly fields should be displayed in.
+
The window height for this App.
  
==App CSS style==
+
==Window Resizable==
Specify the global App CSS style for UI theming.
+
Allow the user to resize the App window (True | False).
  
* See [[CSS]].
+
==Window Title==
 +
The window title for this App.
  
==Disable inline editing==
+
==Window Width==
Disable inline editing (True | False).
+
The window width for this App.
  
 
[[Category:App Settings]]
 
[[Category:App Settings]]

Revision as of 11:45, 26 April 2023

See Also

App Settings, Command Line Switches,

Additional file path

A semi-colon (;) separated list of additional path locations to search for App specific files.

App CSS style

Specify the global App CSS style for UI theming.

Autoload libraries

If True, then libraries are auto loaded if a file of the same name as the directory exists in the additional file paths (True | False).

  • Any libraries that are auto loaded are monitored for changes and reloaded if changes are detected.

CSS libraries

The CSS libraries for this App. Separate each filename with a ; to specify more than one.

Desktop theme

Desktop theme for this App (Default | Android | iOS | Modern | Modern2 | ... (read from themes directory).

Disable inline editing

Disable inline editing (True | False).

Disable VT requery when parentdatachanged

This will handle legacy VT usage prior to Lianja 6.3 (True | False). From v6.3.

  • The command line switch --disableparentvtrequery can be used to start the App Builder and set this to True. Once set, the command line switch is no longer required.

Help table

Context sensitive help table for this App.

Hide Header Bar

Hide header bar at runtime (True | False).

Hide header icons

Hide the header icons in the page header bars (True | False).

Home page app

The App to load when the Home icon is clicked.

HTML editor

Choose the HTML editor to use in this App (Desktop | Web | Mobile).

From v9.0, the HTML editor for an individual WebView Section or WebView Gadget can also be set on the UI control itself to override the App-wide setting for desktop Apps.

Include in HTML HEAD

Include HTML file contents into the HTML5 Client.

Initial page

The first page to view for this App at runtime.

Initial UI state

The initial UI state for this App. This will be applied to all pages, sections and fields/gadgets.

Maximize Window

Maximize the window for this App(True | False).

Meta types file

The Meta types file for this App.

Meta types library

The Meta types library for this App.

Navigation menu caption

Navigation menu caption text in the page header.

Readonly fields backcolor

The background color that readonly fields should be displayed in.

Runtime connection

The connection string to use for 'local' virtual tables. This will be substituted when the App is deployed at runtime in the App Center or the Web/Mobile clients.

Runtime database

The database that will be substituted when the App is deployed at runtime in the App Center or the Web/Mobile clients.

Show navigation history

Show pages navigation history buttons in page header.

Show navigation menu

Show pages navigation menu in page header (True | False).

Show Page Center

Show Page Center when navigation menu clicked (True | False).

UI states table

UI states table for this App.

Window Height

The window height for this App.

Window Resizable

Allow the user to resize the App window (True | False).

Window Title

The window title for this App.

Window Width

The window width for this App.