Page 1 of 1

Change style if iFrame subform.

Posted: Mon Mar 18, 2024 1:11 pm
by kknm
I'm setting up many subforms (iFrames) on 1 form.
While there is no data, there is no horizontal scrolling. When the data appears, it appears even though the table fits within the allocated width. Tried applying css in the RUN properties overflow-x: hidden - to no avail.
Is it possible ?
scroll.png

Re: Change style if iFrame subform.

Posted: Mon Mar 18, 2024 1:21 pm
by kev1n
Add to the embedded form (iFrame):

Code: Select all

$('body').css('overflow-x', 'hidden');

Re: Change style if iFrame subform.

Posted: Mon Mar 18, 2024 1:28 pm
by kknm
Thanks it helped!