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
Features
Installation / Integration
How to integrate AppGini Helper Javascript Library with your AppGini web application
Glyphicons
By default AppGini supports the Glyphicons icon-library. There are several functions in our AppGini Helper Library for setting icons. Within our library you can omit the prefix "glyphicon".
Variations
Several AppGini Helper functions allow styling elements. The colors always depend on the selected theme. Variation.primaryVariation.info Variation.success Variation.warning Variation.danger See also Detail ViewAction ButtonsCollapsible PanelsTable ViewAdd LinkAdd Button