>-------- Original-Nachricht --------
> Datum: Wed, 17 Aug 2011 15:13:02 +0200
> Von: thron7 <[email protected]>
> An: qooxdoo Development <[email protected]>
> Betreff: Re: [qooxdoo-devel] Probs after Migration
>
>
>
> On 08/17/2011 03:09 PM, Johann Mellin wrote:
> >
> >
> > the IE log says:
> >
> > SCRIPT5022: DOM Exception: INVALID_CHARACTER_ERR (5)
> > newversion.js, Zeile 6429 Zeichen 42
>
> Can you reproduce this in the source version of the app?
Hello thron7,

sorry for my belated reply. At the moment I can't find a solution.
This is line 6429 of newversion.js:


if(S!=w){if(qx.bom.client.Engine.MSHTML){W=R.document.createElement(t+name+s+S+u);


                                        
--> W ist the wrong character

the line 6429 is in a function I added below:

---begin soure code ---
( function(){
    var x="mshtml", w="",v="qx.client",u=">",t="<",s=" 
",r="='",q="http://www.w3.org/1999/xhtml",p="qx.bom.Element",o="div",m=";' 
",n="></";
    qx.Class.define(
        p,{
            statics:{
                __fe:{
                    "onload":true, 
                    "onpropertychange":true,
                    "oninput":true,
                    "onchange":true,
                    "name":true,
                    "type":true,
                    "checked":true,
                    "disabled":true
                },create:function(name,Q,R){
                    if(!R){
                        R=window;
                    }
                    if(!name){
                        throw new Error("The tag 
name is missing!");
                    }
                    var T=this.__fe;
                    var S=w;
                    for(var V in Q){
                        if(T[V]){
                            S+=V+r+Q[V]+m;
                        }
                    }
                    var W;
                    if(S!=w){
                        
if(qx.bom.client.Engine.MSHTML){
                            
W=R.document.createElement(t+name+s+S+u);           // line 6429 
                        }else{
                            var 
U=R.document.createElement(o);
                            
U.innerHTML=t+name+s+S+n+name+u;
                            W=U.firstChild;
                        }
                    }else{
                        
if(R.document.createElementNS){
                            
W=R.document.createElementNS(q,name);
                    }else{
                        
W=R.document.createElement(name);
                    }
                }
                for(var V in Q){
                    if(!T[V]){
                        
qx.bom.element.Attribute.set(W,V,Q[V]);
                    }
                }return W;


---end soure code ---

Can you / anybody help me one more time  ?
Thank you

regards,

>
>
> T.
>
>
> 
------------------------------------------------------------------------------
> Get a FREE DOWNLOAD! and learn more about uberSVN rich system,
> user administration capabilities and model configuration. Take
> the hassle out of deploying and managing Subversion and the
> tools developers use with it. http://p.sf.net/sfu/wandisco-d2d-2
> _______________________________________________
> qooxdoo-devel mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

        
-- 
Empfehlen Sie GMX DSL Ihren Freunden und Bekannten und wir
belohnen Sie mit bis zu 50,- Euro! https://freundschaftswerbung.gmx.de
------------------------------------------------------------------------------
Get a FREE DOWNLOAD! and learn more about uberSVN rich system, 
user administration capabilities and model configuration. Take 
the hassle out of deploying and managing Subversion and the 
tools developers use with it. http://p.sf.net/sfu/wandisco-d2d-2
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to