Masterdata
Connect a master data element to your table and get automatically a master data form!
Configure the list columns and the form with JSON to get it functionally and good looking!
The data access rights are easily configured in the backend and displayed in the master data form.
User manual

Listing record functions:
- List
- Sort
- Filter
Crud functions:
- Create, New record
- Read, Load record
- Update, Save record
- Delete record
Export functions:
- CSV export
- Excel export
- PEF export
Configuration functions:
- Column order
- Column width
- Column selection
- Data read limit
The form is devided into two parts. In the top is the record list with filter and sorting. In the bottom the record is displayed and can be edited in the form. You can drag the line between to enlarge or shrink the listing.
Listing Functions
Sort
Actually you can sort the displayed records. A callback for the server will be installed later.
Header filter
this are the filters:
- like (default)
- =
- >= or >
- <= or <
- !=
Column Order
With drap & drop in the column header you can move the colum to the desired position.
Column Width
Set the cursor between the columns. The Cursor changes to: <->By drag & drop you can adjust the column width.
List
Each record ist displayed in 1 line. The columns are defined in the datadefintion of tabulator. The following symbols display the rights of the user:
edit
delete
blocked
Functions for the form
New
New empties the form. In future default values for the fields will be supported.
Edit (by Click in the List)
By clicking on the line the recordset is displayed in the form and can be edited. Independent from the displayed columns in tabulator the whole record already loaded in the row. A new load from the server is not necessary.
Cancel
Cancel undos the changes and displays the original record.
Save
Before saving the data a validation by jsonform is done. If its failed you first have to correct the values. In future the data-access-class will do a validation check for the fieldtype and the user rights. Other checks have to be progammed by yourself.
Delete (X click in the List)
The user rights are implemented. If the ban is displayed, deletion is not allowed. After a confirmation question, the record will be deleted. The form displays an empty record.
Dropdown Menu
Options:
- utf-8 CSV Export
- Excel Export
- PDF Export
- Set read limit
- Choose columns
- Save configuration
- Reset configuration
- Multi select, set on
Utf-8 CSV Export, Excel Export, PDF Export
You can download the displayed data in the desired format. If not all lines are displayed, please change the record read limit.
Set read limit
You can change the record read limit to an arbitrary value. The read limit is valid until you load a new page.
Choose columns
The Choose colmns dialog allows you to choose the displayed columns.
Save configuration
With "Save configuration" you save (only available when loogged in):
- the choosen columns, the order of the columns and the the column width.
- the filter
- the height of the tabulator list
Reset configuration
(only available when loogged in)
By reseting the configuration the default columns, its order and with is set to default.
Multi select on
For some special functions the selection of 1 line can be changed to multi line selection.
Developer
Table requirement: primary key of the table
A table for master data has to fullfill the following rules:
- the Primary key has to consist of a single field
- INT, autoincrement
- creatorID (by using the data access rights )
- INT
The primary key is a hidden field in the master data form. It can not be changed!
Masterdata form on the fly
Checkout the generation of a masterdata form on the fly:
- Customer table on the fly:
index.php?table=er_customer&page=masterdata - Item table on the fly:
index.php?table=k8components&page=masterdata
Attention, generate a table is only allowed on this demonstration page. This functionality is normally turned off!
Open data definition as page
you can open the datadefintion as:
- masterdata form:
index.php?datadefID=customer&page=masterdata - list:
index.php?datadefID=customer&page=list - form:
index.php?datadefID=customer&page=form
Create a data definition out of your table
The data definition contains details for reading, saving and displaying a recordset.
The following steps are necessary to create your own data definition:
- er_customer, if not exist create it with "k8examples.sql"
- generate your data definition
- table: er_customer
- datadefID: mycustomer
- get_data definition.php?datadefID=mycustomer&table=er_customer
- folder <myproject> create a folder: mycustomer
- save the data definition in your folder mycustomer with the name "mycustomer" as json file.
- look in your browser:
index.php?datadefID=mycustomer&page=masterdata
kitsamples/customerbasic/customerbasic.json:
Place a masterdata plugin element on your page
The masterdata plugin offers this elements:
- master data form
- list with optional edit functions
- form only
To add an edit function to the list, please look for the "edittype" beneath.
Master data
List (tabulator)
Form only
The return values of "masterdata" are:
Datadefinition
Properties and sections:
- name: the displayed name
- key: necessary for edit
- rightcheck: with RBAC, look to the explanation
- columns: the definition of the table columns
- masterdata: the main parameters
- tabulator: the list, please have a look to: tabulator.info
- k8form: the form, please have a look to: k8form
- html: the html snippets
- data: for form only
To change the look of your masterdata form, please configure tabulator (list at the top) and k8form (form at the bottom)
JSON structure:
The key column is used for edit functions. If the key value is zero, it's a new record.
rightcheck=1The backend adds automatically:
settings.masterdata:
- right_usercreate: "0" or "1"
recordset
- right_userupdate: "0" or "1"
- right_userdelete: "0" or "1"
add JavaScript to your datadefinition (optional)
add JavaScript files:
head[]
This tags are added in the head of the web page. Here you can declare additional libraries or files.
head_end[]
The tags are placed behind the declaration of your datadefinition. Here you can add JavaScript function to your datadefinition.
foot[]
This are inserted after your web page is displayed. Use it to add JavaScript events to HTML tag.
foot_nodefault: true/false
Normally the "js/example.js is called to add your defined element to the web page. If "foot[]" is declared, this file is not called. If you still want to call example.js, please set:
- foot_nodefault: false
tabulator
This is an part of the customer tabulator definition:
The most often used column properties are:
- title - Required This is the title that will be displayed in the header for this column
- field - Required (not required in icon/button columns) this is the key for this column in the data array
- headerfilter - true for more details look in the tabulator documentation
- visible - (boolean, default - true) determines if the column is visible
- hozAlign - sets the horizontal text alignment for this column (left|center|right)
- headerHozAlign - sets the horizontal text alignment for this columns header title (left|center|right)
- width - sets the width of this column, this can be set in pixels or as a percentage of total table width (if not set the system will determine the best)
- formatter - Tabulator offers a wide range of formatters for strings, numbers, dates, ...
- formatterParams - additional parameters you can pass to the formatter
For more details look to:
Columns can easily removed or added. if desired you change the order of the columns. If you extend the sql-statement, you can easily add the columns here.
tabulator, initial sort
example for a status field:
The basic sort declaration can also be made in masterdata sql_orderby. When it's made in tabulator, the sort icon is bold.
sortMode
Without a declaration the sorting is processed local:
- local (default)
- remote, by each sort the sort array is added to the data request:
- sort[0][field]=name1&sort[0][dir]=asc
initialSort[]
- column
- dir:
- asc
- desc
tabulator, with select
example for a status field:
headerFilter: list
This defines a select field in the header filter.
headerFilterParams
The headeFilterParams define the values, which can be selected.
formatter:#function#k8tabulatorformatter
The k8tabulatorformatter allows to define values, which are displayed with the "text".
formatterParams
The value list contains the "text" property, which is displayed.
tabulator, add a control button to the row
add a button column to your JavaScript file:
formatter()
With the formatter function the HTML is defined. It's a button with the bootstrap icon: "bi-display".
cellClick()
By a click on the buttion this function is executed
- With cell.getData() the data of the row is set to "dat".
- "window.location.href" open the given url.
- The query parameter "displayvalue" is set to "dat.coursenumber".
k8form
This is an part of the customer k8form definition:
The most often used column properties are:
- tagName - default: input This is the tag of the form element. Other supported tags are:
- select
- textarea
- button
- type - for input, button most of the HTML5 input types are supported
- name - Required This is the name of the database column
- label - the label of the form element
- decimals - the decimals by type=number
- attributes{} - additional attributes for the field
- maxlength - the maximum allowed charaters of the field
- required - defines if an form element is required
- disabled - defines if an form element is disabled
- inputgroup - declares an inputgroup, a bootstrap 5 element, consist multiple elements
- options - for select defines the options of a select element
For more details look to:
Thanks to the container property of k8form HTML layout can be managed and fieldsets or multiple block can be displayed.
k8form, 2 blocks
masterdata/templates/datadefinition_k8form_2blocks.json:
Bootstrap needs 3 containers to create 2 blocks:
- class: row
- class: col-sm-6
- class: col-sm-6
k8form, datalist (example: employee)
datalist example for employee "address":
"Address", name: "gender"
This field allows any entry to address the contact person. The "list" attribute points to a "datalist". In the data list you will find suggestions for field input.
"datalist", id: "gender_datalist"
Here are the suggestions for the field input listed. This "tag" is not displayed in the form. It has no label.
So the "fieldwraptemplate" only consist out of the "fieldelement". It also has no "class" -> the fieldclass is set to empty.
The "id" is same to gender attribute "list".
The "tagName" is "datalist".
In the "innerHTML" the options (list entries) are defined as HTML elements.
k8form, with select
example for a status field:
tagName
To select values out of an option list, you have have to declace a HTML tag: "select".
options
The options list allows you to define value pairs (value, text) to select from. If the text should be saved in field and table, you don't need a value.
datadefinition for "checkbox"
SQL, column definition
In the database a checkbox is saved with the values: 0 / 1 for false / true.
"mytype": "BOOLEAN"
Setting "mytype" to boolean is important for filtering and building the clause.
tabulator
headerfilter
headerfilter and headerfilterParams define how the headerfilter is displayed and processed.
formatter
formatter and fomatterParams define the representation in the line.
k8form
checkbox
The label is displayed behind the checkbox. The value is important; it has to be: "1".
masterdata, default values
defaultvalues
The default value for a new record is "1".
masterdata
defaultvalues
The defaultvalues allows to set default values for a new record in the form.
clause
The clause allows to filter the data.
url_...
- Ajax
- load
- read_filter
- save
- del
- Dialog
- new
- edit
- master
- detail
edittype
- 0 no controls
- 1 insert with reload (only catalog plugin)
- 2 innerHTML (form_selector)
- 3 overlay
- 4 new tab
- 5 new window
- 6 own line in catalog template (only catalog plugin)
- 7 own line with special template (only catalog plugin)
- 8 master data form
- 9 link in this window
SQL statement
sql_derived example:
Please write the sql_statement or sql_derived in the datadefinition in one line (JSON compliant)!
The "sql_derived" property is important by using the view with tabulator, otherwise the property "sql_statement" should be used because it's a little bit faster.
The placeholder are:
- §select: additional fields are inserted:
- rightuser_update
- rightuser_delete
- '' as k8select: same §select
- §dateformat: the SQL date string is inserted
- WHERE 1=1: Where condition, here the "WHERE ".$clause is inserted
- §userID: $_SESSION['userID']
- §clientID: $_SESSION['clientID']
- §companyID: $_SESSION['companyID']
- §domain_language: $GLOBALS['domain_language']
Alternatively the include "getEntries_sql" can be used to write the statement direct in php.
Call back functions
Extend the datadefintitions with call back functions:
the parameters:
- settings: configuration of the element
- el_md: the masterdata html element
- dat: the record with column value pairs
- e: the event
- el: the source element
- selected: the selected rows
- row_actual: the current row
- bnew: true/false (cbAfterSave(
add tinymce
masterdata/templates/tinymceset.js
Create your datadefintion JavaScript file. Copy the line from the template into your file and add your datadefID to the settings variable.
additional declarations in the datadefinition:
The parameter "projectchoice" of the query string is read. If the "projectchoice" is not empty, the datadefinition "projects" is declared.
Wtih the command "$o_projects->getentries(..) the project record is read and set to "$dat_project".
"$bdefault=true;" is set, because this short code should not replace the declaration of all other JavaScript variables.
The "script" tag declares a JavaScript area. The variable "dat_project" with the values of the recordset is issued.