Created
December 14, 2011 21:05
-
-
Save ernestlv/1478518 to your computer and use it in GitHub Desktop.
minimal representation of EXTJS 3.4 page
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
<title id='title'>HTML Page setup Tutorial</title> | |
<!-- ** CSS ** --> | |
<!-- base library --> | |
<link rel="stylesheet" type="text/css" href="resources/css/ext-all.css" /> | |
<!-- overrides to base library --> | |
<!-- ** Javascript ** --> | |
<!-- ExtJS library: base/adapter --> | |
<script type="text/javascript" src="adapter/ext/ext-base.js"></script> | |
<!-- ExtJS library: all widgets --> | |
<script type="text/javascript" src="ext-all-debug.js"></script> | |
<!-- overrides to library --> | |
<!-- extensions --> | |
<!-- page specific --> | |
<script type="text/javascript"> | |
// Path to the blank image should point to a valid location on your server | |
Ext.BLANK_IMAGE_URL = 'resources/images/default/s.gif'; | |
Ext.onReady(function(){ | |
console.info('woohoo!!!'); | |
}); //end onReady | |
</script> | |
</head> | |
<body> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment