Re: rich dropdown

  •  04-22-2004, 12:01 PM

    Re: rich dropdown

    Frans,

     

    If you want to configure the fancydropdown background color. Please try the following two properties:

     

    /// <summary>

    /// Specifies the background color of the Container table

    /// </summary>

     

    BgColor

    /// <summary>

    /// Specifies the background color of the drop downs.

    /// </summary>

    DropDownBackColor

     

    If you want to use your own style sheet and also want to enable fancydropdown, you have to put the following JavaScript code at the top of your page:

     

    <script language="javascript">
         function rOver(el) {el.style.background = 'highlight'; el.style.color='white';}
         function rOut(el) {el.style.background = '#FFFFFF'; el.style.color='black';}
         function rOver1(el) {el.style.border = '1px solid highlight';}
         function rOut1(el) {el.style.border = '1px solid #D4D0C8';} 
         function rOut2(el) {el.style.border = '1px solid #808080';} 
    </script>

     

     

    Then, i also have a small problem with the OBJECT tag that is automatically added (dlgHelper). it is configured with a height of 0px, but i still get a small line on top of my page. Since that section has no white background it is visible between 2 frames.

     

    Can you post your code here?  I will check the code for you.

     

     


    asp.net Chat http://cutesoft.net/ASP.NET+Chat/default.aspx
    Web Messenger: http://cutesoft.net/Web-Messenger/default.aspx
    asp.net wysiwyg editor: http://cutesoft.net/ASP.NET+WYSIWYG+Editor/default.aspx
    asp wysiwyg html editor: http://cutesoft.net/ASP
    asp.net Image Gallery: http://cutesoft.net/ASP.NET+Image+Gallery/default.aspx
    Live Support: http://cutesoft.net/live-support/default.aspx

View Complete Thread