Page 1 of 1

Html Generating Differently On Mobile

Posted: January 26th, 2022, 6:08 pm
by JefferyD
I have a table on a widget with 2 rows and 6 columns, but on mobile devices it's generating as 12 rows with 1 column each. Is there a way to change that behavior?

Re: Html Generating Differently On Mobile

Posted: January 27th, 2022, 10:34 am
by SteveCap
There are two Controls Properties for responsive design.

All Controls have RWDVisibility (Responsive Visibility) with valid values of All, Desktop, and Phone.
RWDVisibility.png
RWDVisibility
RWDVisibility.png (7.78 KiB) Viewed 733 times
RWDVisibility
RWDVisibility
RWDVisibility.png (7.78 KiB) Viewed 733 times
If All the control will be visible on both Desktop and Phone.
If Desktop the control will only be visible on Desktop
If Phone the control will only be visible on Phone

Tables, Lists, Grids, and Tabs also have RWDAutoFormat with valid values of True or False
RWDAutoFormat.png
RWDAutoFormat
RWDAutoFormat.png (6.4 KiB) Viewed 733 times
RWDAutoFormat
RWDAutoFormat
RWDAutoFormat.png (6.4 KiB) Viewed 733 times
If True when on Phone every column will turn into a row
If False no change will occur when on Phone