Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7890315
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T06:19:23+00:00 2026-06-03T06:19:23+00:00

I have created a MVC SenchaTouch project. I have created a sample application where

  • 0

I have created a MVC SenchaTouch project.
I have created a sample application where the user will enter the username and password and send it to the web service.

The username, and password fields are suppose to be in the ‘VIEW’, and the ‘sending it to the web service’ functionality should be in the ‘CONTROLLER’.

In my program, the sending to the web service part is also there in the ‘VIEW’, so can someone please help me edit my code, so that i could have the ‘send to the web service’ functionality in the ‘CONTROLLER’

Here’s the code

Ext.define('TU.view.Contact',{
           extend:'Ext.form.Panel',
           xtype:'contactform',

           config: {

           title:'Contact',
           iconCls:'user',

           url:'http://somesite.com/contact.php',
           items: [
           {
                   xtype:'fieldset',
                   title:'User Login',

                   items:[
                          {
                          xtype:'textfield',
                          name:'name',
                          label:'Name'
                          },
                          {
                          xtype:'passwordfield',
                          name:'password',
                          label:'Password'
                          }
                          ]
           },
           {
                   xtype:'button',
                   text:'Send',
                   ui:'confirm',
                   padding:5,
                   handler:function(){
                   this.up(contactform).submit();

                   }
           }
           ]



           }




           });
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-03T06:19:24+00:00Added an answer on June 3, 2026 at 6:19 am

    Firstly, set the id property for your button.

     xtype:'button',
     id:'submitBtn',
     text:'Send'
     .....
     .....
    

    In the controller class,

    Ext.define('MyApp.controller.Main', {
        extend: 'Ext.app.Controller',
    
        config: {
            refs : {
                submitBtn: '#submitBtn'
            },
    
            control : {
                submitBtn: {
                    tap: 'submitData'
                }
            },
        },
    
        submitData: function() {
                 var form = Ext.getCmp('form-id');
    
                 // Get username and password fields ...
                 var formvalues = form.getValues();
    
                 // Web Service code goes here ..
                 Ext.Ajax.request({
                     params: formvalues,                     
                     url:'http://_servername_.com/app/insert.php'
    
                     success : function() {
                           Ext.Msg.alert('Success','Username and password successfully entered');
                     }
    
                     failure : function() {
                           Ext.Msg.alert('Failure','Error while adding data');
                     }
                 });        
        }
    });
    

    NOTE : insert.php will be the server side code ( just an e.g) that will make a connection with your database and enter the values in it.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have created a sample project using ASP.NET MVC 3 Web Application (Razor) template.
I have created blank Asp.Net-MVC 3 web application and want to write my own
I have opened a sample ASP.NET MVC project. In HomeController I have created a
I have just created a mid-sized web-application using Java, a custom MVC framework, javascript.
I have created an ASP.Net MVC Web Application and used NuGet to install Ninject
I used mvc 4.0 to develop my web application, I have created a pager
We have a Spring web application created using Spring MVC 3.0 In the same
I have created a sample project in asp .net mvc using vs 2010. In
I am developing an asp.net mvc application and have created my custom user database
I have created a Web Application in MVC 3 with razor. My solution structure

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.