HI,
How do use javascript to set up the weblistbar height altitude?
Hi Everyone,Using a percentage value with the height property will only scale an element to a size as large as the parent element. So if you have this: <div id="parent"> <div id="child" style='width:49%;height:300px'></div> <table style='width:50%;height:100%'> ... </table> </div>the table will scale out to 300px because the parent div is 300px high due to the other child element.
Regardsphoto recoveryhttp://www.datadoctor.biz
Hello joe1985,
There is no built in api for this but you would be able to get the DOM element and then through style object to set its height. CSOM API here :
Hope this helps.