to have the text on the full width

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: 177
Joined: 2013-02-06 09:49

to have the text on the full width

Post by pasbonte » 2024-09-18 15:05

Hello, and is it possible to have the text on the full width? This is a read-only text field

Capture d’écran 2024-09-18 170337.png
Capture d’écran 2024-09-18 170337.png (145.87 KiB) Viewed 110 times

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

Re: to have the text on the full width

Post by pbottcher » 2024-09-18 20:24

Hi,
this looks actually strange for a read-only text field. Normally the label is left and the text is on the right side as the fields above.

For a normal field you could try something like

Code: Select all

$j('#FIELNAME').parent().removeClass('col-lg-9');
Otherwise it would be necessary that you look at the DOM for that field. Maybe you can post a screenshot.
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.

ppfoong
Veteran Member
Posts: 46
Joined: 2021-07-13 16:46

Re: to have the text on the full width

Post by ppfoong » 2024-09-19 03:46

When comes to page formatting, I highly recommend AppGini Helper JavaScript Library. It makes life much easier.

Post Reply