Whichever Variant of the CoreTable you want to use some other Files are required.
The path informations are always ment as relative to the File called by the webclient.
So if you have a website [DOMAIN]/products/index.html on which you use the Coretable, so the file stdfuncs.js for example has to be located at [WWW-ROOT]/products/scripts/core/.
Alway required are the two Files
scripts/core/stdfuncs.js This file contains methods to dynamically load javascript files, it is actually a library containing some often used (general) functions.
scripts/core/app.js This is the base class for all with the CoreAll framework developped controls (and so also the table), similar to the class “Object” in Java
These two files have to be included by the convetional method, using the SCRIPT-Tag in Head of the HTML-Document.
<script type='text/javascript' src='scripts/core/app.js'></script>
<script type='text/javascript' src='scripts/core/stdfuncs.js'></script>
modules/tools/cachetable.js This file contains the class for a non editable cachtable
modules/tools/edit_cachetable Thi file containes the class for an editable cachetable
modules/tools/generic_cachetable.js This is a generic cachetable and is required in any case. Cchetable and edit_cachetable are subclasses of the generic_cachetable and an us an instance of datatable or edittable respectively.
modules/tools/cachetable.css general style for cached tables, required by generic_cachetable.
modules/tools/slider.js This contains th class for the scrollbar right to the actual table, required by generic_cachetable.
modules/tools/templates/cachedtable.html A templatefile for cached tables defines e.g. that the scrollbar is right to the actually shown table.