by javier | Nov 14, 2020 | Advance Functions, Table Hook Modifications
In your hooks/<tablename>-dv.js file(replace the <tablename> with your actual tablename) // Set input to reject space. File hooks/tablename-dv.js $j('#<fieldname>').keyup(function () { $j(this).val($j(this).val().replace(/s/g, '')); }); (don’t...
by javier | Nov 14, 2020 | Advance Functions, Table Hook Modifications
In the hooks/tablename-dv.js $j(function(){ $j('#fieldname').change(function(){ $j('#insert').click(); });...
by javier | Nov 14, 2020 | Advance Functions, Look & Feel
If you wish to hide the seconds part, you could do so by editing the tablename_dv hook. Open the generated hooks/tablename_dv.php file in a text editor (where tablename is the name of the concerned table) and look for the dv function, then add this line inside it:...
by javier | Nov 14, 2020 | Advance Functions, Footer Extras, Look & Feel
Adds include the following,- Change all text from upper to lower case and vice versa (Table View Only)- Add a continuous image border- Change page background color- Change your navbar background color- Add a vertical stack navigation icon w/fixed scroll (you can...
by javier | Nov 13, 2020 | Advance Functions, Footer Extras
First, you should place this code in the hooks/footer-extras.php file: <script> $j(function(){ AppGini.numericOnly = function(fieldname){ setInterval(function(){ var field = $j('#' + fieldname), val = field.val(); if(val == parseFloat(val)) return; val =...
by javier | Nov 13, 2020 | Advance Functions, Look & Feel
Add the following code to the generated hooks/footer-extras.php file: <script> $j(function() { setInterval(function() { $j('.children-tabs tfoot td').each(function() { var txt = $j(this).text().trim(); // The line below assumes your app is in English language .....
Recent Comments