Call form submit method : Submit Button « Ext JS « JavaScript DHTML






Call form submit method

 

<html>
<head>
<title>Hello World Window</title>
<link rel="stylesheet" type="text/css" href="ext-3.0.0/resources/css/ext-all.css" />
<script type="text/javascript" src="ext-3.0.0/adapter/ext/ext-base.js"></script>
<script type="text/javascript" src="ext-3.0.0/ext-all.js"></script>

</head>
<body>
<script type="text/javascript">
Ext.onReady(function() {


    var myform = new Ext.FormPanel({ 
      url: 'your.php',
      renderTo: Ext.getBody(),
      frame: true,
      title: 'Title',
      width: 250,
      items: [
                {
            xtype: 'textfield',
            fieldLabel: 'Title',
            name: 'title',
            allowBlank: false,
            listeners: {
              specialkey: function(f,e){
                if (e.getKey() == e.ENTER) {
                    alert("about to submit");
                  myform.getForm().submit();
                }
              }
            }
            }
        ]
    });


});
</script> 
<div id='div1'>asdf</div>
</body>
</html>

   
  








Related examples in the same category

1.Get form submit button
2.Set url for your submit button
3.Define handler for success and failure handler