最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Dynamically adding extjs items to field container - Stack Overflow

programmeradmin1浏览0评论

I am using a extjs field container for my application where I have details, funds, dependants sections in the form. In the funds and dependants section I have a button 'add another' which is intended to add a new line item every time when button is clicked.

This is the form i have created

I am new to extjs4. Can anyone please help me how to create a item dynamically onclick?

I am using a extjs field container for my application where I have details, funds, dependants sections in the form. In the funds and dependants section I have a button 'add another' which is intended to add a new line item every time when button is clicked.

This is the form i have created http://jsbin./evevod/4/edit

I am new to extjs4. Can anyone please help me how to create a item dynamically onclick?

Share Improve this question edited Oct 28, 2019 at 10:14 Brian Tompsett - 汤莱恩 5,89372 gold badges61 silver badges133 bronze badges asked Feb 22, 2012 at 14:58 RaviRavi 4,0957 gold badges32 silver badges35 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 10

Below is example handler.

handler: function() {
    var container = this.up('fieldset');
    var config = Ext.apply({}, container.initialConfig.items[0]);
    config.fieldLabel = container.items.length + 1;
    container.add(config);
}

Basically it finds parent ponent which holds rows (which is fieldset), access initialConfig property, finds first line config in it (items[0]), makes shallow copy of config (Ext.apply) and adds it to container (container.add).

Working sample: http://jsbin./evevod/6/edit#preview

We can change the name of fields like this:

var container = this.up('fieldset'); 
var config = Ext.apply({}, container.initialConfig.items[0]);
config.fieldLabel = container.items.length+1;
config.items[0].name = 'fname' + config.fieldLabel;
config.items[1].name = 'lname' + config.fieldLabel;
config.items[2].name = 'title' + config.fieldLabel;
发布评论

评论列表(0)

  1. 暂无评论