[CLOSED] Content ul li not tabbed and not showing the round buttons

  1. #1

    [CLOSED] Content ul li not tabbed and not showing the round buttons

    Not sure what I am doing incorrect, but I can not get unordered lists to show up:

    
    <ext:Panel runat="server" Title="Overview" BodyPadding="5">
    <Content>
    <div>
       <ul>
         <li>Coffee</li>
         <li>Tea</li>
         <li>Milk</li>
       </ul>
    </div>
    </Content>
    </ext:Panel>
    Last edited by Daniil; Jun 12, 2012 at 2:23 PM. Reason: [CLOSED]
  2. #2
    Ok I searched the forum a little bit more and found the following thread ... drops certain HTML Formatting ...

    It gave the following three solutions:

    There are three options.

    1. Do not render styles at all setting RenderStyles="None" for a ResourceManager.

    2. Overriding css for a specified component setting a Cls property.

    3. Using a Panel and its PreventBodyReset property.
    http://docs.sencha.com/ext-js/3-4/#!...eventBodyReset

    Example
    <ext:Panel runat="server" PreventBodyReset="true">
         <Content>
             <p>Test List:</p>
            <ul>
               <li>Item 1</li>
               <li>Item 2</li>
               <li>Item 3</li>
            </ul>
         </Content>
     </ext:Panel>
    The PreventBodyReset attribute is gone in ExtJS 4.1 and if I RenderStyles to the ResourceManager in the master page everything is out of whack. I guess I need to look at overriding css.
  3. #3
    Please use StyleHtmlContent property (set it to true)
  4. #4
    Thanks. Please close the thread.

Similar Threads

  1. [CLOSED] Buttons in FormPanel Content
    By voipswitch in forum 1.x Legacy Premium Help
    Replies: 11
    Last Post: Oct 29, 2010, 12:12 PM
  2. Replies: 8
    Last Post: Jun 23, 2010, 10:16 AM
  3. Replies: 1
    Last Post: Jul 23, 2009, 3:57 AM
  4. TAB not showing it's content
    By fabiomarcos in forum 1.x Help
    Replies: 2
    Last Post: Feb 26, 2009, 11:15 AM
  5. [CLOSED] Round corners and shadow on panel?
    By Jurke in forum 1.x Legacy Premium Help
    Replies: 6
    Last Post: Feb 23, 2009, 7:58 AM

Posting Permissions