1234567891011121314151617181920212223242526272829303132333435 |
- function AsynchDataDispatcherEntry(oCV) {
-
- if (oCV) {
- var request = new AsynchDATARequest(oCV.getGateway(), oCV.getWebContentRoot());
- this.setRequest(request);
-
- AsynchDataDispatcherEntry.baseConstructor.call(this, oCV);
- AsynchDataDispatcherEntry.prototype.setDefaultFormFields.call(this);
- }
- }
- AsynchDataDispatcherEntry.prototype = new DispatcherEntry();
- AsynchDataDispatcherEntry.baseConstructor = DispatcherEntry;
- AsynchDataDispatcherEntry.prototype.setDefaultFormFields = function() {
- this.addFormField("cv.responseFormat", "data");
- };
|