responsiveness broken

Responsiveness is still not working properly in 2.4.0.

See http://dev2.ubiapps.com/

If you make the screen smaller the layout changes, but it doesn’t return if you make it bigger again.

It also doesn’t appear to respond at all when the size changes as a result of rotating a device (tested on Android with chrome)

The way responsiveness works also appears to be sensitive to the widths that are set on the columns. For example, in the layout at http://dev2.ubiapps.com/ if I swap the order of the two columns (map and sidebar) it behaves differently. If this is intended, it should be documented.

Hello,

yes, layout is not resized correctly if the last column has fixed width. We will correct the issue.

You may try to use minWidth instead of width for the accordion as workaround for the current version:

...
view: "accordion",
id: "viewAccordion",
minWidth: 310,
gravity: 0.01,
...

Thanks for the response.

What is the significance of

gravity: 0.01

in your example?

I set such a gravity in order to make the Accordion column smaller than the Map column (you can use bigger value, 0.1 for example). So, the right column is small, its width can not be less than 310px.