Sencha Touch - Navigation



Description

This is to create a navigation view.

Syntax

Following is the simple syntax to create a navigation form.

Ext.create('Ext.Form', {})

Example

Following is a simple example showing the usage.

<!DOCTYPE html>
<html>
   <head>
      <link href = "https://cdn.sencha.com/touch/sencha-touch-2.4.2/resources/css/sencha-touch.css" rel = "stylesheet" />
      <script type = "text/javascript" src = " https://cdn.sencha.com/touch/sencha-touch-2.4.2/sencha-touch-all.js">
      </script>
      <script type = "text/javascript">
         Ext.application({
            name: 'Sencha', launch: function() {
               //create the navigation view and add it into the Ext.Viewport
               var view = Ext.Viewport.add({
                  xtype: 'navigationview',

                  /*
                  * We only give it one item by default, which will be the only 
                  * item in the 'stack' when it loads
                  */                
                  items: [
                     {
                        //items can have titles
                        title: 'Navigation View',
                        padding: 10,

                        //inside this first item we are going to add a button
                        items: [
                           {
                              xtype: 'button',
                              text: 'Push another view!',
                              handler: function() {

                                 /*
                                 * When someone taps this button, 
                                 * it will push another view into stack    
                                 */

                                 view.push({
                                    //this one also has a title
                                    title: 'Second View', padding: 10,

                                    //once again, this view has one button
                                    items: [
                                       {
                                          xtype: 'button',
                                          text: 'Pop this view!',
                                          handler: function() {
                                             //pop current view out of the stack
                                             view.pop();
                                          }
                                       }
                                    ]
                                 });
                              }
                           }
                        ]
                     }
                  ]
               });
            }
         });
      </script>
   </head>
   <body>
   </body>
</html>

This will produce following result −

sencha_touch_view_components.htm
Advertisements