sorry again

I was thinking its working, coz it looks logical ;)
But if im doing that my Object cant instantiate, so i cant debug with 
Firebug :(

here the whole code, may be there is a mistake, i shorten the code to 
show just the handling, when the dialog is called and what i wanne do.

var LoginController=Class.create();

LoginController.prototype = {

        initialize: function(){   
            this.logged=false;
       },

        checkLogin: function(element, reqURL){

            if(this.reqURL != reqURL){
                this.logged = true;
              }
            this.controllLogin;
},

controllLogin:function(){
   
    if(this.logged == true){
        var ref = this;
        this.loader2=new net.ContentLoader( this.reqURL, 
function(){ref.displayContent(this.req);});
        }

    else{
               
                   Dialog.confirm($('login').innerHTML, 
{windowParameters:{className:"alphacube", width:400}, okLabel: "login", 
                   cancelLabel:"cancel",ok:doSomething;});

                    function doSomething(pwc) {
                        alert("processing -> " + pwc.getId());
                        // now do stuff.
                        // send request for Login
                   }
       
         }
},

displayContent: function(){
//do that
};



and what i do,is calling the checkloginfuntion of my instanz.




Felix Shnir schrieb:
> Dialog.confirm($('login').innerHTML, 
> {windowParameters:{className:"alphacube", width:400}, okLabel: 
> "login", cancelLabel:"cancel",ok:doSomething;});
>
> function doSomething(pwc) {
> alert("processing -> " + pwc.getId());
> // now do stuff.
> }
>
> Felix.
>
>
> On 12/8/06, *Stes81* <[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>> wrote:
>
>     Not sure if I understood it right.
>     Its not possible, to initialize a Dialog.confirm as an object.
>
>     So how can I call Dialog.confirm in a function of my object, to
>     get the
>     parameters of Dialog.confirm?
>     All what i wanne do is to send an request to a php file,while
>     clicking
>     "ok". And a function inside my Object should handle the responds.
>     May be Im on a wrong way ... but pls let me know how could be a work
>     arround.
>
>     Ethan Allen schrieb:
>     > I think that's because "this" has no Dialog.Confirm.  Dialog
>     itself is
>     > it's own object created via the library.  Maybe make a function
>     for your
>     > object that calls the Dialog.confirm with all your wanted
>     parameters.
>     >
>     > -ethan
>     >
>     > -----Original Message-----
>     > From: [EMAIL PROTECTED]
>     <mailto:[EMAIL PROTECTED]>
>     [mailto:[EMAIL PROTECTED]
>     <mailto:[EMAIL PROTECTED]>]
>     > On Behalf Of Stes81
>     > Sent: Friday, December 08, 2006 4:02 AM
>     > To: [email protected] <mailto:[email protected]>
>     > Subject: [Javawin] reference problem "this"
>     >
>     > hi guys,
>     >
>     > got a problem with referencing ("this")
>     >
>     > Im calling a function of my objectinstanze (LoginHandler) which is
>     > creating a dialog like that:
>     >
>     > sendLogin: function(){
>     >
>     > var ref= this;
>     > Dialog.confirm($('login').innerHTML, {windowParameters:
>     > {className:"alphacube", width:400}, okLabel: "login", cancelLabel:
>     > "cancel",
>     >         ok:function(win){
>     >             var para = Form.serialize('myForm');
>     >             this.loader1=new net.ContentLoader( url,
>     > function(){ref.checkLogin(this.req);},null, 'Post',para);
>     >         }
>     >     });
>     > }
>     >
>     >
>     > checkLogin: fuction(){
>     >     alert(this.loader1.req.responseText ;);
>     >
>     > }
>     >
>     > with the following line I wanne initialize a loaderobject for my
>     Object
>     > (LoginHandler) :
>     >
>     >
>     > this.loader1=new net.ContentLoader( url,
>     > function(){ref.checkLogin (this.req);},null, 'Post',para);
>     >
>     >
>     >
>     > the parameter:
>     >
>     > function(){ref.checkLogin(this.req)
>     >
>     > calls my function LoginHandler.checkLogin.. The Problem which I
>     have, is
>     >
>     > that the Object loader1 is not inside my LoginHandler.
>     > I know that the loader1-Object is inside the Dialog-Object.
>     >
>     > But if I'm using
>     >
>     > this.Dialog.confirm(....
>     >
>     > Its throwing an error.
>     > So how is it possible to get access to my loader1?
>     >
>     >
>     > _______________________________________________
>     > Javawin mailing list
>     > [email protected] <mailto:[email protected]>
>     > http://mail.xilinus.com/mailman/listinfo/javawin_xilinus.com
>     >
>     > _______________________________________________
>     > Javawin mailing list
>     > [email protected] <mailto:[email protected]>
>     > http://mail.xilinus.com/mailman/listinfo/javawin_xilinus.com
>     <http://mail.xilinus.com/mailman/listinfo/javawin_xilinus.com>
>     >
>     >
>
>
>     _______________________________________________
>     Javawin mailing list
>     [email protected] <mailto:[email protected]>
>     http://mail.xilinus.com/mailman/listinfo/javawin_xilinus.com
>
>
> ------------------------------------------------------------------------
>
> _______________________________________________
> Javawin mailing list
> [email protected]
> http://mail.xilinus.com/mailman/listinfo/javawin_xilinus.com
>   


_______________________________________________
Javawin mailing list
[email protected]
http://mail.xilinus.com/mailman/listinfo/javawin_xilinus.com

Reply via email to