I have a problem with the grid on the third level.
has a scroll, but I can not make it maintain the position after the postback.
i added <Scrolling put AllowScroll="True" SaveScrollPosition="True"> but does not work.
in the following image shows the scroll to which I refer.
Then, on each onload in the page, call a function who assign the postion that has been saved previously.
<body class="BODY" onload="assignScrollPosition();">
function assignScrollPosition() {
if (document.getElementById("divTerceraGrilla") != null) {
var divToUpdate = document.getElementById("divTerceraGrilla");
divToUpdate.scrollLeft = document.getElementById("scroll").value;
}