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
Object detail view definition
Work with object details
AyMINE Framework uses universal class univDetail to open and manage details. It supports descendants (e.g. user settings is implemented as the descendant class derived from univDetail – use it as a reference class for the descendant implementation) or even using alternative view from the standalone java script implementation. Nevertheless, common AyMINE modules does not need it.
Detail uses common server counterpart library objRecord that loads data and manage update save. Server loads data according to the jsonc detail definition – client application does not define what data should be loaded but both server and client uses the same view definition from the object definition.
Sections
Slave object section describes, how detail (as well as list) manages the detail of the slave objects.
Detail descendants describes, how to created special detail class and manage detail behaviour programmatically.
Hints for developers
The section contains common problems that occurs during the development and new object definition. Recommendations are not useful for regular users of application based on the AyMINE Framework.
All recomendations here are somehow linked with object detail definition in the jsonc file:
Defined field is not visible
There are several reason, some are obvious, but others is often hard to find. Check properly:
- Mistyped character – simply field does not exist. Error is mostly easy to find, because application rasises a warning at the console
- Hidden field – field is set non-visible. Not common, because nonvisible are mostly only technical fiedls
- Readonly empty field – Field marked read only is invisible if it has no values. Be careful about that because it is correct behaviour and so system does not show any warning. Especially detail opened for new object does no show any read only field.
- Duplicity in field orders – When fields have explicitly defined order and tw fields have the same order, one of them becomes invisible. Be careful about that, because it mostly occurs for fields in different object definitions (abstract object overwritten by specific object). – This could be nice if a warning occurs, but it doesn't (yet).