如何添加"清除按钮"进入纸张下拉菜单?

时间:2016-12-13 17:33:38

标签: html web polymer web-component

在纸张输入中,我有一个" Clear Button":

 <paper-input
          id="myinput" maxlength="10" char-counter label="myinput"
          always-float-label required>
  <paper-icon-button suffix 
         onclick="clearInput('InputClientes')" 
         icon="clear" 
         class="iconClear" 
         alt="clear" 
        title="clear">
  </paper-icon-button>
 </paper-input>

可以在纸张下拉菜单中添加类似按钮(清除按钮)以清除选择吗?

感谢。

1 个答案:

答案 0 :(得分:0)

1。如果您使用内置paper-dropdown-button的{​​{1}},则可以将其paper-listbox属性调用selected以清除当前值。

2。添加一个按钮,该按钮将调用此方法并使用null CSS规则对其进行样式设置,以将其置于正确的位置。

3。在列表中选择项目时,收听position:relative事件以显示[关闭]按钮。

iron-select