I have re-installed a new download of qooxdoo 0.8.3, and created a brand-new
application (recipe2) using the create-application.py script. (The 'hello
world' button). This app works fine with IE6 and all others. I took the code
from my Application.js, and used it to replace the 'hello world' code with
mine. So the new 'recipe2' version of Application.js contains the code
below.
Using FF or IE7+, this works fine, but hangs IE 6. I was thinking maybe that
we had corrupted our version of qooxdoo and that a re-install would help,
but appears not.
I've sent an example online to Stefan, Chris, & Fritz of the website that's
having trouble; our customer did not want it advertised in a public forum
however.
Ken
/* ************************************************************************
Copyright:
License:
Authors:
************************************************************************ */
/* ************************************************************************
#asset(recipe2/*)
************************************************************************ */
/**
* This is the main application class of your custom application "recipe2"
*/
qx.Class.define("recipe2.Application",
{
extend : qx.application.Standalone,
/*
*****************************************************************************
MEMBERS
*****************************************************************************
*/
members :
{
viewer: null, // simple "view", layout manager
/**
* This method contains the initial application code and gets called
* during startup of the application
*/
main : function()
{
this.base(arguments);
this.viewer = new qx.ui.container.Composite();
this.getRoot().add(this.viewer, {edge : 12});
var basicLayout = new qx.ui.layout.Basic();
this.viewer.setLayout(basicLayout);
var dm = new qx.ui.table.model.Simple();
dm.setColumns(["list1"]);
this.menuItemTable = new qx.ui.table.Table(dm);
this.menuItemTable.set({ height: 260,
//minHeight: 100,
width: 278
//columnVisibilityButtonVisible: false,
//statusBarVisible: false,
//showCellFocusIndicator: false,
//tabIndex: 4
});
//this.menuItemTable.setColumnWidth(0,284);
this.viewer.add(this.menuItemTable);
//this.viewer.syncAppearance();
}
}
});
------------------------------------------------------------------------------
Come build with us! The BlackBerry® Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay
ahead of the curve. Join us from November 9-12, 2009. Register now!
http://p.sf.net/sfu/devconf
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel