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 8677385
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T20:26:37+00:00 2026-06-12T20:26:37+00:00

Please give me idea how to create a registration form in titanium and pass

  • 0

Please give me idea how to create a registration form in titanium and pass fill up the registration data from that form to another form .

  • 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-12T20:26:38+00:00Added an answer on June 12, 2026 at 8:26 pm

    Following is a sample code for registration. I have created an additional file ‘success.js’ in the resource folder, shows the second window. Please try the following code

    Write these line in the app.js file

    var win1 = Ti.UI.createWindow({
     width : 'auto',
     height: 'auto',
     backgroundColor : '#FFFFFF'
    });
    
    var txtName = Ti.UI.createTextField({
     top   : '25%',
     width : '75%',
     height: '35',
     hintText : 'Name'
    });
    
    win1.add(txtName);
    
    var txtAddress = Ti.UI.createTextField({
     top   : '35%',
     width : '75%',
     height: '40',
     hintText : 'Address'
    });
    
    win1.add(txtAddress);
    
    
    var btnRegister = Ti.UI.createButton({
     top : '55%',
     width : '50%',
     height : '35',
     title  : 'Register'
    });
    
     win1.add(btnRegister);
    
     win1.open();
     btnRegister.addEventListener('click', function(){
    
     var win2 = Ti.UI.createWindow({
      width : 'auto',
      height: 'auto',
      backgroundColor : '#FFFFFF',
      url  : 'success.js'
    });
    
     win2.name = txtName.value;
     win2.address = txtAddress.value; 
     win2.open();
    });
    

    // Write the following lines in the success.js file

    var win2 = Ti.UI.currentWindow;
    
    var name = win2.name;
    var address = win2.address;
    var lblName = Ti.UI.createLabel({
      top  : '30%',
      width : '75%',
      height : 'auto',
      color  : 'yellow',
      backgroundColor : 'blue',
      text : name,
      textAlign : 'center'
     });
    
    var lblAddress = Ti.UI.createLabel({
      top  : '40%',
      width : '75%',
      height : 'auto',
      color  : 'yellow',
      backgroundColor : 'blue',
      text : address,
      textAlign : 'center'
     });
    
     win2.add(lblName);
     win2.add(lblAddress);
    

    now complile the code and run. It worked with me. Try it

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

Sidebar

Related Questions

Hi please give me idea or reference to create Paging User control. Thank You
Can someone please give me an idea of how the WIRED Magazine on iPad
It does not matter what programming language. Can anyone please give me an idea
Anybody please give some useful links on this topic.i need to create a content
Could someone please give me a link on how to create a query in
Can you please give me an idea how to render custom controls in property
i want to create login form using sqlite in iphone view based application please
Please give me an idea about android User interface design.Is there any tool to
on some pages I give a link that call a page (createPDF.php) which create
Please give me some tips for this case. I have an iPhone APP which

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.