Categories | Question details Back To List | ||
How hide scrollbar for 'atachurl'
Answer posted by Support on Aug 11, 2008 06:40 When you are using attachURL - iframe element created automatically, which produce scrollbars automatically if content inside area is too big. There is no any way to disable such scrolls through API. Can be done by changes in code dhtmlxwindow.js if (type == "url") { var fr = document.createElement("IFRAME"); fr.scrolling="no";//this line can be added fr.frameBorder = 0; |