This commit is contained in:
2020-04-10 00:12:58 +00:00
parent 9acd909606
commit 11dd7e001b
5 changed files with 39 additions and 36 deletions

View File

@@ -1,25 +1,27 @@
# FORM BASICS
# USER INTERFACE
## Overview
### Responsive display
The AyaNova interface is designed to be "responsive" which means it will adapt what is displayed to accomodate to the size of the device being used.
This means that on smaller screens items will be displayed in a vertical manner and on larger screens they will flow outwards horizontally to make the best use of screen space.
In addition some elements are customized to work better with the size of the device being used. For example a data grid list of records will show as a traditional horizontal grid on a larger display to take advantage of the horizontal space and on a smaller device the same list will appear as a series of vertical boxes. This avoids the need to scroll sideways on any screen size.
In addition some elements are customized to be easiser to use with specific sizes of devices. For example a data grid list of records will show as a traditional horizontal grid with columns on a larger display to take advantage of the horizontal space and on a smaller device the same list will appear as a series of vertical boxes containing each record. This avoids the need to scroll sideways on any screen size.
The responsive display is dynamic which means it will adapt on the fly to the screen size even if it changes, so, for example if you rotate a narrow screen sideways the display will change to take advantage of the wider display area.
### Main user interface components
The overall AyaNova user interface consists of three main components:
- [App Bar](#app-bar) at the top
- [Navigation drawer](#navigation-drawer) to the side
- [Navigation drawer](#navigation-drawer) to the side
- [View](#main-view-area) displayed in the main largest area of the screen
### App bar
The purpose of the app bar is to show which part of AyaNova is currently open by displaying a text title and often an icon corresponding to the form being displayed in the main view area.
The purpose of the app bar is to show which part of AyaNova is currently open by displaying a text title and often an icon corresponding to the form being displayed in the main view area.
A blue app bar indicates the current view is a main area of AyaNova and not a specific record being edited.
A green app bar indicates a specific record is being edited in an edit form.
@@ -27,32 +29,29 @@ A green app bar indicates a specific record is being edited in an edit form.
The app bar also hosts the [context menu](#context-menu) which appears as three dots stacked on top of each other and the "hamburger" icon which looks like three horizontal bars stacked on top of each other and is used to show or hide the [navigation drawer](#navigation-drawer)
### Navigation drawer
The navigation drawer shows all the areas of AyaNova the currently logged in user has rights to access. Clicking on an item in the navigation drawer will cause that view to be displayed in the view area of AyaNova.
The navigation drawer shows all the areas of AyaNova the currently logged in user has rights to access. Clicking on an item in the navigation drawer will cause that view to be displayed in the view area of AyaNova.
The navigation drawer can be displayed or hidden by clicking on the "hamburger" icon in the app bar.
On smaller screens such as smart phones the navigation drawer is by default not shown until the user clicks on the hamburger icon.
On larger screens the navigation drawer is displayed by default.
### Main view area
### View area forms
In the smallest sized screens the `Navigation drawer` will by default be hidden and only slide out when the user clicks on the `hamburger` icon at the top which appears as three horizontal lines stacked on top of each other.
On larger screens the navigation drawer will by default be visible and can be hidden by clicking on the hamburger icon at the top.
The main View area is where the currently selected form is displayed and worked with.
## Form context menu
## How to use forms in AyaNova
The context menu is located in the app bar above every form in AyaNova and looks like 3 dots stacked vertically. It is called the "context" menu because the options in it will change based on the particular form in use, the rights the currently logged in user has to make changes or the state of an object being edited.
TODO Anatomy of a form with all possible control types and common elements and how they work
This is a good page to have images on for examples
todo: tags and picklists, show how to enter a query in a picklist and how to query tags specifically
todo: common elements between all forms and menu options like record history, save, delete, help, whatever may trip people up or be confusing
On larger screens the most commonly used options will move from inside the context menu to the main app bar to save a click.
## Navigation
While the top options in the context menu will change depending on the context, all context menus will have the following options at the bottom:
## Context menu
The context menu is located at the top of every form in AyaNova and looks like 3 dots stacked vertically. It is called the "context" menu because the options in it will change based on the particular form in use, the rights the currently logged in user has to make changes or the state of an object being edited.
On larger screens the most commonly used options will move from the context menu to the main too
- [Search](form-home-search.md) option for searching the AyaNova database
- Help option for viewing help about the specific form being displayed (this manual)
- [About](form-ay-about.md) option for viewing version information and technical support information.
- [Logout]()

View File

@@ -0,0 +1,14 @@
# LOGIN
The login form is displayed when you first open AyaNova or log out of AyaNova.
The password field has an option to show your password to make it easier to ensure it's type correctly. Click on the eye symbol to the right of the passowrd field to show or hide the password entry.
AyaNova passwords and user names are case sensitive and there are no particular rules regarding passwords but longer passwords that are easier to remember without writing down are far more secure than shorter complicated ones with a mix of symbols that are hard to remember.
If AyaNova is in trial mode for testing there will be a [trial user select list](ay-start-trial-login.md) that allows selection from many sample users with different [Roles](ay-biz-admin-roles.md) for testing purposes and have their user name and password automatically filled in for you.
At the bottom of the login form is a link to the AyaNova website displayed as the version and copyright information for the AyaNova app.

View File

@@ -1,11 +0,0 @@
# NAVIGATION
## How to move around in AyaNova
### Login
### Navigation panel
### Help system
TODO could use some images here as well

View File

@@ -2,7 +2,7 @@
## Overview
AyaNova has a search form available by selecting the Search option in the [context menu](ay-start-form-basics.md#context-menu)
AyaNova has a search form available by selecting the Search option in the [context menu](ay-start-form-overview.md#form-context-menu)
Explain search phrase entry, stopwords etc

View File

@@ -21,9 +21,10 @@ nav:
- 'Changes from AyaNova 7': 'ay-start-changes-from-v7.md'
- 'Trial mode login': 'ay-start-trial-login.md'
- Forms:
- Form basics:
- 'Navigation': 'ay-start-navigate.md'
- 'Form basics': 'ay-start-form-basics.md'
- Introduction:
- 'Overview': 'ay-start-form-overview.md'
- 'Login': 'ay-start-login.md'
- 'Select lists': 'ay-start-form-select-list.md'
- 'Tags': 'ay-start-form-tags.md'
- 'Event log': 'ay-start-event-log.md'