Instalando Ext JS


/ Published in: HTML
Save to your folder(s)



Copy this code and paste it in your HTML
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  3.  
  4. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
  5. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  6. <title>Basic Installation</title>
  7.  
  8. <link rel="stylesheet" type="text/css" href="../ext-2.2/resources/css/ext-all.css" />
  9.  
  10. <script type="text/javascript" src="../ext-2.2/adapter/ext/ext-base.js"></script>
  11. <script type="text/javascript" src="../ext-2.2/ext-all.js"></script>
  12. <script type="text/javascript">
  13. Ext.onReady(function(){
  14. alert('well done!!');
  15. });
  16. </head>
  17.  
  18. </body>
  19. </html>

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.