Pman.Request.js
authorAlan Knowles <alan@akbkhome.com>
Mon, 13 Sep 2010 04:45:07 +0000 (12:45 +0800)
committerAlan Knowles <alan@akbkhome.com>
Mon, 13 Sep 2010 04:45:07 +0000 (12:45 +0800)
Pman.Request.js

index 0306c65..8161fe9 100644 (file)
@@ -24,4 +24,16 @@ var t = new Pman.Request({
 * @cfg {String} method     GET or POST (default GET), POST will create a form, and post that into the hidden frame.
 * @cfg {Boolean} newWindow (optional) download to new window
      
-*/
\ No newline at end of file
+*/
+
+Pman.Request = function(config){
+    
+    Pman.Request.superclass.constructor.call(this, config);
+    this.request(config);
+
+}
+
+Roo.extend(Pman.Request, Roo.data.Connection, {
+    
+    
+});
\ No newline at end of file