Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
107
Hurry:WebDialogWindow And UltraWebListbar
posted

In a Web page, I have used WebDialogWindow and the UltraWebListbar at the same time.

Think that I am put into use as follows:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
WebDialogWindow is demonstrated incompletely, and scrollBar appears on Web page.The UltraWebListbar height attribute is 100%.

Think that I am put into use as follows:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
WebDialogWindow do not have a problem.But the UltraWebListbar height attribute is not 100%.

How do resolve all above problem?

Expect to reply to , Thank you very much.

Parents
No Data
Reply
  • 24497
    posted

    Hi,

    If that is a problem with height of children elements under XHTML, then you may fix that by stretching <body> and other containers. For example, modify <body> by something like
    <body style="height:100%">

    If that will not work or it will have other side effects, then you may debug by temporary adding border or background:
    <body style="height:100%; border:1px solid red;">
    If red border is not stretched to size of window, then you should also add height to <html>:
    <html ... style="height:100%">
    If red border is stretched, but a child (listbar) is not, then you should also add height to <form> (any all other possible containers of listbar).
    <form ... style="height:100%">

    It is possible that height:100% will make some objects larger than height of window, so, you should use slightly smaller values (90..98%). While debugging, I recommend to use temporary background/border for all parents of listbar in order to see their actual sizes.

Children