i need help with the above question.
To clear a normal Textfield
works very well. example code:
_resetButton: function () {
var InputField = this.byId("idInputField");
InputField.setValueState("None");
InputField.setValueStateText(null);
}
but for TextArea
or DatePicker
field it doesn't work.
Have anybody an idea how i can set Value null
i have tried it with setValue()
or setText()
but without success.
Best regard