by javier | Nov 15, 2020 | Advance Functions, Look & Feel, Magic Files
$j('.clear-upload').text(' remove selected...
by javier | Nov 15, 2020 | Advance Functions, Look & Feel, Magic Files
In TABLENAME-dv.js file in the hooks directory // Set input to automatically convert to Uppercase. File hooks/tablename-dv.js $j('#FIELDNAME').keyup(function () { $j(this).val($j(this).val().toUpperCase());...
by javier | Nov 15, 2020 | Advance Functions, Look & Feel, Table Hook Modifications
Add to the “TABLENAME.php” file in the hooks directory in the tablename_header function case 'tableview': $header=$header="<%%HEADER%%><script>$j(function(){ $j('td.TABLENAME-FIELDNAME').each(function(){ switch ($j(this).text()) { case...
by javier | Nov 15, 2020 | Advance Functions, Table Hook Modifications
Send out an email notification to all group members after a record has been added or updated. The email title comes from a field from a table. When notification is receive, if user clic on the title, it redirect user to the added record after user login. in the...
by javier | Nov 14, 2020 | Advance Functions, Look & Feel, Table Hook Modifications
In the tablename_init hook, add: $CSVFields = $options->QueryFieldsCSV; $colIndex = 0; $colNumber = 0; // loop through all fields foreach ($CSVFields as $field => $title) { // Update column header if (($options->ColNumber[$colIndex] – 1) == $colNumber)...
Recent Comments