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