我試圖使在Ajax的形式元素的多紙張輸入聚合物,使用在AJAX型紙張輸入多行屬性
#info {
width: 90%;
height: 300px;
background-color: white;
padding: 10px;
margin: 20px auto;
}
paper-input {
width: 100%;
height: 150px;
}
<div id="info">
<form is="ajax-form" action="../../../back/saveIMG.php" class="picturePost" method="post" enctype="multipart/form-data">
<file-input camera name="pic" id="pic">
<core-icon-button
icon="image:camera-alt">
</core-icon-button>
</file-input>
<br/>
<paper-input multiline id="last" floatingLabel label="Commentaire" ></paper-input>
<!-- -->
<br/>
<input type="submit" name="submitInfo">
</form>
</div>
所以我添加一些屬性像maxRows="5"
和rows="3"
但我的紙張輸入始終是單行區域。
這個元素將被棄用,所以我搜索解決這個屬性錯誤。 – momolechat
你從哪裏得到這些信息?瀏覽Polymer 0.8 alpha版本庫,我注意到paper-input-decorator是[導入到初始0.8版本庫](https://github.com/Polymer/paper-input/tree/0.8-initial-port)。我懷疑他們會刪除這樣一個有用的功能 –
此外,瀏覽[當前文檔](https://github.com/Polymer/paper-input/blob/master/paper-input.html)我發現多行屬性不受支持。也許它是在聚合物的舊版本,但它肯定不是在0.5 –