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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T00:10:51+00:00 2026-05-28T00:10:51+00:00

I am developing an app using Sencha Touch 1.1.1. I would like to create

  • 0

I am developing an app using Sencha Touch 1.1.1. I would like to create an item on a form similar to the iPhone ringtone field (see image). Currently I’m using a textfield and when it gets focus I’m changing the card to a list. The only problem with this is the on-screen keyboard is displayed.

enter image description here

How can I create a form field like the Ringtone field in the iOS sound configuration?

  • 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-05-28T00:10:52+00:00Added an answer on May 28, 2026 at 12:10 am

    I have a solution for now. I created a new class – ListField – based on the code for the Selectfield. I would like to change the icon at the right to an arrow pointing right (like in the image above) – I’m still working on that.

    /**
     * @class Ext.form.List
     * @extends Ext.form.Text
     * @xtype listfield
     */
    Ext.form.List = Ext.extend(Ext.form.Text, {
        ui: 'select',
    
        // @cfg {Number} tabIndex @hide
        tabIndex: -1,
    
        // @cfg {Boolean} useMask @hide
        useMask: true,
    
        monitorOrientation: true,
    
        // @private
        initComponent: function() {
    
            this.addEvents(
                /**
                 * @event tap
                 * Fires when this field is tapped.
                 * @param {Ext.form.List} this This field
                 * @param {Ext.EventObject} e
                 */
                'maskTap');
    
            Ext.form.List.superclass.initComponent.call(this);
        },
    
        initEvents: function() {
            Ext.form.List.superclass.initEvents.call(this);
    
            if (this.fieldEl) {
                this.mon(this.fieldEl, {
                    maskTap: this.onMaskTap,
                    scope: this
                });
            }
        },
    
        // @private
        onRender: function(){
            Ext.form.List.superclass.onRender.apply(this, arguments);
        },
    
        onMaskTap: function() {
            if (this.disabled) {
                return;
            }
    
            this.fireEvent('maskTap', this);
    
        },
    
        // Inherited docs
        setValue: function(value) {
            Ext.form.List.superclass.setValue.apply(this, arguments);
    
            if (this.rendered) {
                this.fieldEl.dom.value = value;
                this.value = value;
            }
    
            return this;
        },
    
        // Inherited docs
        getValue: function(){
            return this.value;
        },
    
        destroy: function() {
            Ext.form.List.superclass.destroy.apply(this, arguments);
            Ext.destroy(this.hiddenField);
        }
    });
    
    Ext.reg('listfield', Ext.form.List);
    

    Example Usage:

                    {
                        xtype: 'listfield',
                        name: 'MakeModel',
                        label: 'Make/Model',
                        id: 'makeModelField',
                        placeHolder: 'Make/Model',
                        listeners: {
                            maskTap: function(field, e) {
                                Ext.dispatch({
                                    controller: truApp.controllers.incidentVehicleController,
                                    action: 'showmakes'
                                });
                            }
                        }
                    },
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm developing an app using Oracle database and I would surely like to have
I am developing an app using PHP and I would like my users to
I am developing an app using Rails and jQuery. I would like to submit
I am very new to sencha touch. I am developing an App using sencha.
Am looking into developing an iPhone native app using Titanium Developer Since this is
I am developing an app using Codeigniter. In this app I got a form
I am developing a web app using Codeigniter and MongoDB. I need to create
I am developing a iPhone app using Monotouch. I need to access a Sqlite
I am developing an App using Titanium for iPhone and Android. I created a
I am developing an app (for both iPhone and Android platforms). It's using the

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.