function NewRecord() {
var id = Ext.getCmp('input_id').clear();
var code = Ext.getCmp('input_code').clear();
var description = Ext.getCmp('input_description').clear();
}
我需要从文本框中删除值,它可以工作,但后面的代码仍然获取id。上面的代码我用js。
答案 0 :(得分:1)
试试这个。
function NewRecord() {
var id = Ext.getCmp('input_id').remove();
var code = Ext.getCmp('input_code').remove()
var description = Ext.getCmp('input_description').remove();
}
答案 1 :(得分:0)
您可以为引用属性设置值,而不是使用Id。在视图控制器中,调用: this.lookupReference(" refNameToTextBox")以获取对文本框的引用;
答案 2 :(得分:0)
function NewRecord() {
var id = Ext.getCmp('input_id').setValue("");
var code = Ext.getCmp('input_code').setValue("");
var description = Ext.getCmp('input_description').setValue("");
}
您可以按setValue("")
清除文字值。
请试试这个。