Non Visual Components
Non visual components are 'helpers' between the technical layer like databases, tables, email etc. and the front-end. They are required on the form, but do not have a visual presentation once the application is generated. You can consider them as 'libraries' that are required to let other components work.
Component | Description |
---|---|
Animation | Component for enabling HTML5 animations |
APIModule | Under development. Module to consume API functions |
APIFunction | Under development. Implement an API function in an API module. |
Blank | Specifies a module without a form, but is runnable. It can use invisible components for database access and can be used for processing, or API implementations |
ChartSerie | A series of x/y pairs that specify an element in a chart |
DatabaseConnector | Reference to your database specification |
DataSource | Dispatcher between database table and form fields |
DBChartSerie | See Chartserie, only now based upon database data |
DBCrud | SQL statements to be used in a crud situation. Use in conjunction with DBQuery. |
DBTable | Basic database table component |
DBSimpleQuery | Simple Query component for executing SQL statements |
DBQuery | Query component, based upon DBTable, but with customizable SQL |
Mailer | EMail module, based upon PHPMailer |
Module | Specifies a module to be reusable. It inherits the form of the parent that is using this one. |
Basic PDF component. Required if you want to work with PDF's. Also for PDF components. You only need one. | |
Root | Specifies a module to be a regular web form. The Root is responsible for theming, basic margins, backgrounds, etc. |
TemplateEngine | Component for generating content based upon a template file and variables. |
Timer | A component that triggers configured times. |