我在输入字段中使用 selectDialog 和 Tableselectdialog 作为值帮助。
但是,搜索后,如果单击搜索字段旁边的(X)按钮,我的搜索字段将不会被清除。
任何人都可以提供有关如何实现这一目标的任何见解吗?因为我没有看到任何与该领域有关的事件。
答案 0 :(得分:0)
您可以在事件search中处理它:
search : function(oControlEvent){
//Indicates if the user pressed the clear icon.
if(oControlEvent.getParameters.clearButtonPressed) HERE WRITE YOUR CODE;
}
答案 1 :(得分:-1)
<input type="text" id="myInput" >
<span class="close" onclick="clearText()">X</span>
function clearText(){
document.getElementById('myInput').value= ""
}
试试吧。希望它有效。