Hi,
there is a method to change the splitter height by javascript on client side.
I had try the follow code but without result.
Code: JavaScript
window.attachEvent('onload',
function () {
var splitter = document.getElementById('<%# MainSplitter.ClientId %>');
if (splitter) splitter.style.height = "300px";
if (typeof(eo_GetObject) != 'undefined') {
var splitter = eo_GetObject('<%# MainSplitter.Id %>');
if (splitter) splitter.refresh();
}
}
);
Thanks
Seltris