Hi,

I need some info regarding how to include the window
UI package in the 
project.

I downloaded package "qooxdoo-0.6-rc1-source.tar.gz",
and created a new 
project from "skeleton/source/sample1".

(Modified the top-level project Makefile so that the
QOOXDOO variable 
pointed to the directory to which I unpacked 
"qooxdoo-0.6-rc1-source.tar.gz", and had to cut out
string "frontend" from 
variables FRAMEWORK and CACHE as directory "frontend"
did not appear to 
exist.  Built project successfully with "make", and
successfully brought up 
the built page in Firefox.  Button "Welcome to
qooxdoo!" properly appeared 
inside the project page in Firefox.)

I then attempted to modify the sample project code in
"source/index.html" to 
display a window with the following code:

***
<script type="text/javascript">
//    qx.core.Init.getInstance().setApplication(new
custom.Application1);

  qx.core.Init.getInstance().defineMain(function()
  {
    var d = qx.ui.core.ClientDocument.getInstance();

    var w1 = new qx.ui.window.Window("First Window",
"icon/16/bell.png");
    w1.setSpace(20, 400, 48, 250);
    d.add(w1);

    w1.open();

  });
</script>
***

Recompiled the project OK with "make", but upon
reloading the project in 
Firefox received JavaScript error "qx.ui.window has no
properties".  It 
appears that the web browser did not load the
Javascript code for objects 
inside package "qx.ui.window" because this package was
not included or 
compiled in the project.  So far I could not find
instructions in the 
documentation on how to include packages.  Do I need
to modify the Makefile? 
Please advise.

Thanks,
Marat


__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to