Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    performance, can't really make it work

    I'm really waiting for any help to my pevious post, a few hours ago. if any expert could help me, it will be very useful.
    the code:
    ********
    <HTML>
    <HEAD>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <SCRIPT>var isomorphicDir="../isomorphic/";</SCRIPT>
    <SCRIPT SRC=../isomorphic/system/modules/ISC_Core.js></SCRIPT>
    <SCRIPT SRC=../isomorphic/system/modules/ISC_Foundation.js></SCRIPT>
    <SCRIPT SRC=../isomorphic/system/modules/ISC_Containers.js></SCRIPT>
    <SCRIPT SRC=../isomorphic/system/modules/ISC_Grids.js></SCRIPT>
    <SCRIPT SRC=../isomorphic/system/modules/ISC_Forms.js></SCRIPT>
    <SCRIPT SRC=../isomorphic/system/modules/ISC_DataBinding.js></SCRIPT>
    <SCRIPT SRC=../isomorphic/skins/SmartClient/load_skin.js></SCRIPT>
    </HEAD>
    <BODY bgcolor="#ffffff" style="overflow-y:hidden;overflow-x:hidden">
    <SCRIPT>
    isc.HStack.create({
    left:0,
    showEdges:false,
    width:980, height:22, membersMargin:0, layoutMargin:0,
    backgroundColor:"#C7C7C7",
    members:[
    ]
    })

    isc.Menu.create({
    ID: "menuHome",
    autoDraw: false,
    showShadow: true,
    shadowDepth: 10,
    data: [
    {title: "Today", name: "today", icon: "/flags/AA.png"}
    ],
    itemClick: function (item) {
    if (item.name == "today") {
    }
    }
    })

    isc.MenuButton.create({
    ID: "menuButtonHome",
    title: "Home",
    width: 140,
    left: 0, top: 0,
    menu: menuHome
    })

    </script>
    </BODY>
    </HTML>
    ***********
    once loaded, in IE, takes 10 seconds to draw the sub menu.
    why? what am I doeing wrong?
Working...
X