-1

<div style='height:calc(100% - 31px);overflow:auto;'>
    <paper-listbox slot="dropdown-content" multi>
     <juicy-table-repeat  rows="{{allAlbums}}">
          <tr>
            <td style='vertical-align: middle;'>
              <paper-checkbox class="styled sizeCheckbox" value="[[item]]" 
                on-change="_addProductInAlbum">
                [[item.albumName]]
              </paper-checkbox>
            </td>
          </tr> 
     </juicy-table-repeat>
    </paper-listbox>
 </div>

Hello sir, i have create web application in which dom-repeat is properly work in chrome browser but in the IE it is not working inside the table tag.i am using

Kapil Soni
  • 1,003
  • 2
  • 15
  • 37

1 Answers1

0

dom-repeat does NOT work in tables IE, you are correct. The issue is tracked by the Polymer team here.

Garrett
  • 231
  • 1
  • 3
  • 4