Please note:
AppGini provides so called hooks for changing headers, footers and contents of detail views and table views. There is no hook-support for Admin-Area. Therefore, all features shown here refer to the so called User's Area, not to the so called Admin-Area.
We are moving the whoe documentation from here to a new place. This is work in progress, please be patient.
Important notice
From version 2020/10 on we recommend using a different syntax for getting a table view handle or a detail view handle:
Table View
Recommended
jQuery(document).ready(function() {
var tv = AppGiniHelper.TV;
// your code here
});
Deprecated
// please do not use this any longer
jQuery(document).ready(function() {
var tv = new AppGiniTableView();
// your code here
});
Detail View
Recommended
var dv = AppGiniHelper.DV; // your code here
Deprecated
// please do not use this any longer var dv = new AppGiniDetailView(); // your code here
