Scroll doesn't work with latest Samsung for internet default browser (and older Safari ...), the page centralises and locks, user can not move the content up or down.
Latest Smartclient 11 downloaded 2017-08-20
Example code below.
<SCRIPT>
isc.HLayout.create({
border: "1px solid red",
ID:"testWindow1",
autoDraw:false,
align:"center",
width:200,
height:400,
members:[]
});
isc.HLayout.create({
border: "1px solid green",
ID:"testWindow2",
autoDraw:false,
align:"center",
width:200,
height:400,
members:[]
});
isc.HLayout.create({
border: "1px solid yellow",
ID:"testWindow3",
autoDraw:false,
align:"center",
width:200,
height:400,
members:[]
});
isc.VLayout.create({
border: "1px solid black",
ID:"mainVLayout",
autoDraw:false,
align:"middle",
padding:100,
width:200,
members:[testWindow1, testWindow2, testWindow3]
});
isc.HLayout.create({
border: "1px solid blue",
ID:"mainWindow",
autoDraw:true,
align:"center",
width:"100%",
height:"100%",
members:[mainVLayout]
});
</SCRIPT>
Latest Smartclient 11 downloaded 2017-08-20
Example code below.
<SCRIPT>
isc.HLayout.create({
border: "1px solid red",
ID:"testWindow1",
autoDraw:false,
align:"center",
width:200,
height:400,
members:[]
});
isc.HLayout.create({
border: "1px solid green",
ID:"testWindow2",
autoDraw:false,
align:"center",
width:200,
height:400,
members:[]
});
isc.HLayout.create({
border: "1px solid yellow",
ID:"testWindow3",
autoDraw:false,
align:"center",
width:200,
height:400,
members:[]
});
isc.VLayout.create({
border: "1px solid black",
ID:"mainVLayout",
autoDraw:false,
align:"middle",
padding:100,
width:200,
members:[testWindow1, testWindow2, testWindow3]
});
isc.HLayout.create({
border: "1px solid blue",
ID:"mainWindow",
autoDraw:true,
align:"center",
width:"100%",
height:"100%",
members:[mainVLayout]
});
</SCRIPT>
Comment