Html Generating Differently On Mobile
-
- Posts: 178
- Joined: August 31st, 2021, 11:37 am
- Contact:
Html Generating Differently On Mobile
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?
Last edited by JefferyD on March 15th, 2022, 5:18 pm, edited 1 time in total. word count: 35
Tags:
-
- Posts: 329
- Joined: August 26th, 2021, 9:18 am
- Contact:
Re: Html Generating Differently On Mobile
There are two Controls Properties for responsive design.
All Controls have RWDVisibility (Responsive Visibility) with valid values of All, Desktop, and Phone. 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 If True when on Phone every column will turn into a row
If False no change will occur when on Phone
All Controls have RWDVisibility (Responsive Visibility) with valid values of All, Desktop, and Phone. 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 If True when on Phone every column will turn into a row
If False no change will occur when on Phone
word count: 126