-
30 Jan 2008 3:36 PM #11
A 'sendEmptyText' boolean would be ideal, because I agree with both sides of the arguement.
-
16 Aug 2008 9:11 AM #12
-
17 Nov 2008 10:21 AM #13
Just cross linking this thread to a doc suggestion:
http://extjs.com/forum/showthread.ph...750#post251750MJ
API Search || Ext 3: docs-demo-upgrade guide || User Extension Repository
Frequently Asked Questions: FAQs
Tutorial: Grid (php/mysql/json) , Application Design and Structure || Extensions: MetaGrid, MessageWindow
-
20 Aug 2009 10:17 PM #14
My solution:
Code:Ext.onReady(function() { Ext.select("form").on('submit', function() { Ext.each(Ext.ComponentMgr.all.items, function() { if (typeof this.getValue == "undefined" || typeof this.el == "undefined") return; if (this.getRawValue() != this.el.getValue()) this.setRawValue(""); }); }); });


Reply With Quote