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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T01:19:12+00:00 2026-05-25T01:19:12+00:00

this is this ausom row editor tool in ext js. I am looking for

  • 0

this is this ausom row editor tool in ext js.
enter image description here
I am looking for more complex tool for grid and actual form.
Something with good API so I can give the user the abillity to see the from in full screen, and not just in a row.
Something that will help me building more and more CRUDs without recreating the forms again and again.
something like “form renderer” from settings.

Where can I get this kind of API.
Thanks

  • 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-25T01:19:13+00:00Added an answer on May 25, 2026 at 1:19 am

    I don’t know of any built-in “form-renderers” but you can create analog using form’s loadRecord method.
    First of all you create form with the same set of inputs as form’s columns (obviously, you can do it dynamicaly). For example if your columns config looks like this:

    columns: [
        {header: 'Name',  dataIndex: 'name'},
        {header: 'Email', dataIndex: 'email', flex:1},
        {header: 'Phone', dataIndex: 'phone'}
    ],
    

    your form’s config should look like this:

    Ext.define('ux.FormEditor', {
        extend: 'Ext.window.Window',
        alias : 'widget.formeditor',
        title : 'Edit User',
        layout: 'fit',
        autoShow: true,
        initComponent: function() {
            this.items = [{
                xtype: 'form',
                items: [{
                        xtype: 'textfield',
                        name : 'name',
                        fieldLabel: 'Name'
                    },{
                        xtype: 'textfield',
                        name : 'email',
                        fieldLabel: 'Email'
                    },{
                        xtype: 'textfield',
                        name : 'phone',
                        fieldLabel: 'Phone'
                    }]
            }];
    
            this.buttons = [{
                    text: 'Save',
                    action: 'save'
                },{
                    text: 'Cancel',
                    scope: this,
                    handler: this.close
                }];
    
            this.callParent(arguments);
        }
    });
    

    Now you assign handler for grid’s itemdblclick event:

    yourGrid.on('itemdblclick', function(grid, record) {
        var view = Ext.widget('useredit'),
            form = view.down('form');
    
        form.loadRecord(record);
        view.down('button[action=save]').on('click', function(btn) {
            var rec = form.getRecord(),
                values = form.getValues();
    
            rec.set(values);
            view.close();
        });
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This question was posted on StackApps , but the issue may be more a
This is strange and baffling. In my ASP.NET 2.0 app I have a form
This more of a style question, rather than a how to. So I've got
This problem doesn't occur in all projects, hence it makes it even more frustrating.
This is what I am trying to do: Once submit a form on my
This is a bit of a long shot, but if anyone can figure it
This is starting to vex me. I recently decided to clear out my FTP,
This is kinda oddball, but I was poking around with the GNU assembler today
This might seem like a stupid question I admit. But I'm in a small
This is a difficult and open-ended question I know, but I thought I'd throw

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.