Hello all,
Mobile layout has an issue with margins when using the following code.
html, body{
margin-left:10px;
margin-right:10px;
height:100%; /mandatory/
overflow:hidden;
}
Please find the below corresponding image urls.
postimg.org/image/iy9y2duw9/18ed7466/
postimg.org/image/qht5vouzt/6b7c9050/
Hello,
try to use layout with 3 columns instead of body margins:
<style>
html, body{
height:100%; /*mandatory*/
overflow:hidden;
}
/*makes a view transparent*/
.transparent{
background-color: transparent !important;
}
</style>
...
dhx.ui({
type: "clean", css: "transparent",
cols:[
{width: 10, css: "transparent"},
{
view: "scheduler",
id: "scheduler"
},
{width:10, css: "transparent"}
]
});
...
Hello
Thank you Alexandra for your help,It’s working fine.
Ravi varma