How do I get scrollbar around checkboxlist inside CreateUserWizard ContentTemplate?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • mherman284
    New Member
    • May 2009
    • 2

    How do I get scrollbar around checkboxlist inside CreateUserWizard ContentTemplate?

    I've seen many posts to put inside div tag, or inside asp:panel. Neither works for IE7. Works in IE8. Note that this is inside CreateUserWizar d ContentTemplate . Appears to be an MS bug.
    Code:
                    <tr>
                        <td align="right" style="width:20%">
                            <asp:Label ID="Label2" runat="server">Districts</asp:Label>
                        </td>
                        <td style="width:80%">                        
                            <div style="height:200px; overflow:scroll">
                            <asp:CheckBoxList
                                runat="server"
                                id="cblDistricts"
                               onload="cblDistricts_OnLoad"                                                           
                                />
                                </div>                           
                        </td>
                    </tr>
    Last edited by Frinavale; Dec 22 '09, 02:44 PM. Reason: Please post code in [code] ... [/code] tags. Added code tags.
  • Frinavale
    Recognized Expert Expert
    • Oct 2006
    • 9749

    #2
    Have you tried setting the height of the CheckBoxList to be larger than 200px?

    -Frinny

    Comment

    • mherman284
      New Member
      • May 2009
      • 2

      #3
      Yes i have. The height does not seem to make a difference. I tried 500px and 700px. thank you.

      Comment

      Working...