Related links
Framework Core functionality
- Client-Defined attributes
- Framework dependency on the open-source libraries
- Default server methods
- Export collection of objects
- AyMINE Framework Server
- The AyMINE licence model
- System Rights
- Import collection of objects
- Multi tenant Architecture
- Strings and translations
- System messaging
- User sessions
- Configuration of the user-defined fields
SOA Architecture
Support for Service Object Architecture and Internal Event ManagementLibraries & Lincences
Module - support for management
Front-End Scripting
System Management
- SaaS Management Module
- Management of the SaaS service client
- Encryted wallet storing access keys for data vault
- Definition and Management users in the SaaS system
- Management of the system users
- System right management
- System role is how user administrator sets the rights
- File access, storing and locking
- Communication geateways
- Private Object Marks, Sign & Notes
Task Management Module
- About TSK module
- Support for voting and decision management
- Support and implementation notes for FMEA
- Support for the Methodology Management
- Project Methodology Support
- Project Roles - Data model and implementation notes
- Actions and Meeting Agenda
- Description of person and supplier competencies
- Business event
- Problem & Helpdesk management support
- TSK module releases
- User Reminder
Task & Task pattern
Mobile & Web Application
- clientprogramming_fevaldataobject
- userinterface-objectstructure
- cliplink
- npmlibraries
- fclip
- drag-drop
- AyMINE Application
- objectdefinition_inlineedit
- npmlibraries_stringlibrary
- clientprogramming
- mobileapplication
- languagesupport
- objectdefinition_multiupdate
- Object API – object <g>
- clientprogramming_fevallanguage
- clientprogramming_fevaluser
- objectdefinition_viewdefinition
- offlineobjects
- System console
- Runtime debugging
- objectdefinition_detailview
CMS - Content Management & Web API services
FI - Finance Management
Sales & Asset management
Sales related services
Description of a part of the AM module - sales partHR - Human Resources
Command select.<object-name>
Command supporting selection of a single or multiple objects from a list
Select command is a special variant of the form command. It is specifically used only for selection of object from list of objects. As a special-kind of form command it has the same general conditions, primarily it is only application command.
Command structure
select.<object-name>.list.<viewName>(purpose=, hint=, location=, selectNothing= )
Example:
{
"a":"select.tskDefUserTask.list.forNewTaskInArea(
purpose=selectOne,
hint=hintName,
location=modal,
selectNothing=NothingSelectName)",
"where":"=attr.selectedObjName ?
`relatesToObjName like '%${g.classID(attr.selectedObjName)}%'` :
`relatesToObjName is null`"
}
(Note: Single json line is here split for better readibility.)
Attributes:
purpose= selectOne | selectOne
Distinguish between single-item selection and multiple-item selection. Field is required
Function generates different attributes for single-item and multiple-item. When command requests multiple items, it will return attributes in the multiple-item format even when user selects only single item.
hint=hintName
Setup hint for the selection. Field is optional.
When filled, Selection block shows hint line above the selection list. hintName is key for the translation; translation is loaded from the translation of the calling object (not called object!)
location=modal
Settings that selection is opened as a modal – smaller window. Optional.
selectNothing=NothingSelectName
Allow user select anything and continue. Optional.
When set, select window has additional button at the bottom that allows closing window without selection and continue with the script. Name of the button is translated input string. Button icon is always the same – . Button can have tooltip text if defined in the translations.
Command options
"where":"where contidions"
Optional command attribute where is send to the server as a additional filter applied to the selection. When used, user cannot switch it off. It is added to the filters defined by server (it cannot break the access-rights controls).
Where string is evaluated so that it can contain complex selection as is in the example.