Tablename-dv.js

Got something cool to share with AppGini users? Feel free to post it here!
Post Reply
dannybridi
Veteran Member
Posts: 54
Joined: 2016-03-21 19:33

Tablename-dv.js

Post by dannybridi » 2023-10-06 00:41

Hi,

I have for many year used the following code in the tablename-dv.js in the hooks folder to add separators after some fields in my details view:
$j(‘#Field1’).parents(‘.form-group’).after(‘<hr><hr>’);
$j(‘#Field2’).parents(‘.form-group’).after(‘<hr><hr>’);
$j(‘#Field3’).parents(‘.form-group’).after(‘<hr><hr>’);
$j(‘#Field4’).parents(‘.form-group’).after(‘<hr><hr>’);
I now need to change the position of some of the separators because I added some fields, but any changes I make are not reflected. If I, however, delete (or rename) the file, all separators disappear (as expected). Even if I comment all lines in the file the separators remain. Strange behavior — at least to me.

Has anyone else encountered this behavior?

Thanks

User avatar
jsetzer
AppGini Super Hero
AppGini Super Hero
Posts: 1817
Joined: 2018-07-06 06:03
Location: Kiel, Germany
Contact:

Re: Tablename-dv.js

Post by jsetzer » 2023-10-06 10:19

but any changes I make are not reflected
Perhaps a caching issue?

Clear browser cache before reloading the page. This should force the browser to load the javascript file from the server and not from (local) cache.
Kind regards,
<js />

My AppGini Blog:
https://appgini.bizzworxx.de/blog

You can help us helping you:
Please always put code fragments inside [code]...[/code] blocks for better readability

AppGini 24.10 Revision 1579 + all AppGini Helper tools

dannybridi
Veteran Member
Posts: 54
Joined: 2016-03-21 19:33

Re: Tablename-dv.js

Post by dannybridi » 2023-10-07 18:41

Well, I swear to you I tried that already, but after reading your reply I tried it again, and guess what, it's working now :!: I guess it was a caching issue.
Thank you for replying.

User avatar
jsetzer
AppGini Super Hero
AppGini Super Hero
Posts: 1817
Joined: 2018-07-06 06:03
Location: Kiel, Germany
Contact:

Re: Tablename-dv.js

Post by jsetzer » 2023-10-07 20:54

Great, happy to hear.

Don't worry, very often, reported 'bugs' figure out as caching problems. I've already asked Ahmed for adding a version tag to all script-includes a while ago, for example...

Code: Select all

<script src=".....js?v=...."></script>
This would solve many problems for many developers. Hopefully this will be part of some future version.

When coding js (or css) I got used to reloading the browser without cache EVERY time I reload. Fortunately there are keyboard shortcuts. Once you got used to it, this is not a problem any longer.
Kind regards,
<js />

My AppGini Blog:
https://appgini.bizzworxx.de/blog

You can help us helping you:
Please always put code fragments inside [code]...[/code] blocks for better readability

AppGini 24.10 Revision 1579 + all AppGini Helper tools

Post Reply