12345678910111213141516171819202122232425262728293031323334 |
- function JSONDispatcherEntry(oCV) {
-
-
- if (oCV) {
- this.setRequest(new AsynchJSONRequest(oCV.getGateway(), oCV.getWebContentRoot()));
- }
- JSONDispatcherEntry.prototype.setDefaultFormFields.call(this);
-
- JSONDispatcherEntry.baseConstructor.call(this, oCV);
- }
- JSONDispatcherEntry.prototype = new DispatcherEntry();
- JSONDispatcherEntry.baseConstructor = DispatcherEntry;
- JSONDispatcherEntry.prototype.setDefaultFormFields = function() {
- this.addFormField("cv.responseFormat", "JSON");
- };
|