separate my input fields by horizontal bars

The recommended method of customizing your AppGini-generated application is through hooks. But sometimes you might need to add functionality not accessible through hooks. You can discuss this here.
Post Reply
pasbonte
Veteran Member
Posts: 178
Joined: 2013-02-06 09:49

separate my input fields by horizontal bars

Post by pasbonte » 2024-10-27 09:03

Hello I simply want to separate my input fields by horizontal bars for example, but without going through a plugin or by an external library or maq question is how to put a tag <hr> ??Thank you
Capture d’écran 2024-10-27 100135.png
Capture d’écran 2024-10-27 100135.png (25.21 KiB) Viewed 210 times

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

Re: separate my input fields by horizontal bars

Post by jsetzer » 2024-10-27 11:09

$j('<hr/>').insertBefore('.form-group');

In dv's javascript could work. Did not test it.
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.14 Revision 1665 + all AppGini Helper tools

pbottcher
AppGini Super Hero
AppGini Super Hero
Posts: 1667
Joined: 2018-04-01 10:12

Re: separate my input fields by horizontal bars

Post by pbottcher » 2024-10-27 12:52

And if you want to wrap it you might try

Code: Select all

$j('.form-group:first').before('<hr/>');$j('.form-group:last').after('<hr/>');
Any help offered comes with the best of intentions. Use it at your own risk. In any case, please make a backup of your existing environment before applying any changes.

Post Reply