okey i wrote a small workaround for this.
i'll have to say that i think this patch is less then ideal and i do not recommend patching ext in this way... but if you really want this problem solved try this:
add the following lines of code to Action.js line 108:
PHP Code:
if (o.clientValidation === false || this.form.isValid()){
this.form.items.each(function(f) {
if (f.el.getValue() == f.emptyText) {
f.el.dom.value = '';
}
});
Ext.lib.Ajax.formRequest(
The first and last line of the code block are the existing lines. You'll need to add the
this.form.items.each block between them.
Explanation
The form.submit() action uses a form serializer instead of the getValue() field functions the raw dom value is send to the server. (this is the value including emptyText if the field is empty)
So the fix posted above does work, only not for a form.submit() action. Since i do not want to start editing in files other then those of ext themselfs. I build the above work around.
Just before the XHR submit-request to the server, this deletes the emptyText value from the dom. Then when the Ext.lib.Ajax.formRequest serializes the form there is no emptyText in there anymore.
The next time the form validates itself, the emptyText will reappear.
Related problems
You will also hit this problem if you use:
form.getValues() as that method also uses the serializer.
This patch will not work for that, but i could use a similar workaround. (again remember, this is not very good
way to work around this... hopefully the ext team will come up with something better, like using getValue() methods or serializers that check for emptyText)
Attachment
The patched file attached here is based on the Ext 1.0.1 release.
Please apply the workaround yourself or do a diff; if you want to apply it on any other version.
Post Scriptum
If your client types the same value as emptyText in your Field the
workaround will not do the desired thing. It will consider the typed value the same as emptyText, which it is clearly not. For 9 out of 10 people this will not be a problem, but if it is you should also check the css (aka the light grey text, instead of black
typed text)