Jan 16, 2009, 1:03 PM
[FIXED] [V0.8.0] Bug in Coolite.AjaxEvent
in the beforerequest listener, there's a line that throws an exception:
o.url = forms[0].dom.action || Coolite.Ext.Url || window.location.href;
o.url = forms[0].action || Coolite.Ext.Url || window.location.href;
it should read:o.url = forms[0].action || Coolite.Ext.Url || window.location.href; o.url = forms[0].action || Coolite.Ext.Url || window.location.href;
popped up on Click AjaxEvent on a Button in a GridPanel with Type=Load