Table of Contents

IT:AD:Sencha Touch:Installation

Download

Mapping into IIS WebSite

First Test

Example (Note: cut/paste from src due to MarkDown Munging):

<!DOCTYPE html>
<html>
  <head>
    <title>Sencha Spikes</title>
     <link rel="stylesheet" href="/touch/2.0/resources/css/sencha-touch.css" type="text/css">
     <script type="text/javascript" src="/touch/2.0/sencha-touch-all-debug.js"></script>

    <!-- <script type="text/javascript" src="app.js"></script> -->

    <script type="text/javascript">
     Ext.application(   
       {
       name: 'Sencha',    
       launch: function() {alert('launched');}
       }
     );
    </script>
  </head>
  <body>
  </body>
</html>

Documentation

As you noticed, the download package is rather large. That's because it contains a whole bunch of documentation.

Customization