1
當我使用紙張菜單按鈕創建帶有紙張項目的疊加層時,我注意到在首次打開時會計算生成的核心下拉大小。聚合物:模型更改時的核心下拉式疊加更新大小
當我然後更新自動綁定綁定的模板模型時,我確實會得到新的紙張項目,但覆蓋層的大小與第一次打開時的大小保持不變。
有沒有辦法在這種疊加層的模型變化上獲得自動調整大小?
這是我的代碼:
<div class="toolbar toolbar-1" layout horizontal center>
<paper-menu-button icon="settings-cell">
<template repeat="{{devices}}">
<paper-item>{{devicename}}</paper-item>
</template>
</paper-menu-button>
</div>
<script>
scope = document.querySelector('template[is=auto-binding]');
scope.devices = [{"devicename": "No device"}];
</script>
當我再手動更改scope.devices到[{"devicename": "No device"}, {"devicename": "Device 1"}]
和已經開通前的菜單,我在疊加滾動。
欲瞭解更多信息,請參閱以下票:https://github.com/Polymer/paper-dropdown/issues/2 – Christof 2015-02-26 12:31:07