-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathAnthem_Changes.txt
More file actions
22 lines (18 loc) · 808 Bytes
/
Anthem_Changes.txt
File metadata and controls
22 lines (18 loc) · 808 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
WebGrid is using Anthem.NET a FREE, cross-browser AJAX toolkit for the ASP.NET development environment that works with both ASP.NET 1.1 and 2.0.
Following changes is done:
Anthem.js file at function:
function Anthem_CallBack(url, target, id, method, args, clientCallBack, clientCallBackArg, includeControlValuesWithCallBack, updatePageAfterCallBack) {
/* Inserted by olav@webgrid.com for supporting 'submit' event */
var eventType = 'submit';
var element = Anthem_GetForm();
if (element.fireEvent)
{
element.fireEvent('on' + eventType);
}
else
{
var evt = document.createEvent('Events');
evt.initEvent(eventType, false, true);
evt.preventDefault();
element.dispatchEvent(evt);
}