Hello, I wrote a new template with Bootstrap layout, I 've built inside SC8,
it is possible that the 'APP SC8 Grid work only inside the Iframe?
In the new layout structure made with Bootstrap load the APP in the Div using Ajax with this function:
<script src=‘http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js’></script>
<script>
$(function () {
$(’#main-nav a’).on(‘click’, function (e) {
e.preventDefault();
var page = $(this).attr(‘href’);
$(’#CENTER’).load(page);
});
});
</script>
The Grid is loaded correctly, but does not respond and freezes, such as the Button Next e Previous Page not work.
If the load inside Iframe works all right.