1. #31
    Sencha User
    Join Date
    Nov 2007
    Posts
    94
    Vote Rating
    1
    kerbo is on a distinguished road

      0  

    Default


    I finally figured out how to get the dropdown list to display for 4.2.

    Replace:



    PHP Code:
    tpl:
     [
       
    '<ul><tpl for=".">',
          
    '<li style="list-style-type: none; margin: 0 0 0 -40px;" role="option" class="' Ext.baseCSSPrefix 'boundlist-item";><span class="x-combo-checker">&nbsp;</span> {' me.displayField '}</li>',
       
    '</tpl></ul>'
     

    With:

    PHP Code:
    tpl: [
     
    '<tpl for=".">',
        
    '<div class="x-boundlist-item" ><span class="x-combo-checker">&nbsp;</span> {' me.displayField '}</div>',
      
    '</tpl>'


  2. #32
    Sencha User
    Join Date
    Jul 2012
    Posts
    2
    Vote Rating
    0
    KOLANU is on a distinguished road

      0  

    Default


    Remove UL and LI tags did the trick...