Tuesday, May 6, 2014

Hello EXTJS

hello.html

<html>
<head>
    <title>Hello</title>
   
    <!-- Ext JS Files -->
    <link rel="stylesheet" type="text/css" href="extjs/resources/css/ext-all.css">
    <script type="text/javascript" src="extjs/ext-all-debug.js"></script>
   
    <!-- App Files -->
    <script type="text/javascript" src="hello.js"></script>
   
</head>
<body>
</body>
</html>

hello.js

Ext.application({
    name: 'Hello ExtJS',
    launch: function() {
        Ext.create('Ext.container.Viewport', {
            layout: 'fit',
            items: [
                {
                    title: 'Hello ExtJS',
                    html : 'Hello ExtJS! My name is DEDEN HENDRA PERMANA'
                }
            ]
        });
    }
});

No comments:

Post a Comment