I had implemented angular-gridster2 to hold several widgets. They all work fine and are in place when displayed in the browser. But when the same view is used in mobile view, they are stacked one upon another with only one single column which is fine, but the problem is that the order of the items is random. Is there a possible way so that the widgets are ordered as per their left to right position in the web view.
The configuration of gridster I am using :
{
"gridType":"fixed",
"fixedColWidth":125,
"fixedRowHeight":125,
"swap":false,
"pushItems":false,
"displayGrid":"none",
"draggable":{
"enabled":false
},
"resizable":{
"enabled":false
},
"minCols":12,
"maxCols":20,
"minRows":12,
"margin":15,
"disableWindowResize":false,
"scrollToNewItems":true,
"disableWarnings":false,
"ignoreMarginInRow":false,
"disableScrollHorizontal":false,
"disableScrollVertical":false,
"minItemCols":1,
"minItemRows":1,
"compactType":"none",
"isMobile":true,
"api":{
}
}