English 中文(简体)
Ext JS 4 无线电小组检查活动
原标题:Ext JS 4 radio group check event

我正在在 FormPannel 内使用 x 类型创建一个 EXJS 4 的 radioGroup 。 我试图在检查收音机后立即启用/ 禁用一个文本字段 。

{
xtype:  radiogroup ,
fieldLabel:  Enable / Disable  ,
columns: 2,
vertical: true,
items: [
     {boxLabel:  Enable , name:  formtype , inputValue:  1 },
     {boxLabel:  Disable , name:  formtype , inputValue: 2 ,checked:true},
    ]
 }

我不清楚要在哪里添加检查/ 点击事件的听众。 提前多谢一吨 。 @ info/ plain

最佳回答

您必须在每个无线电按钮上处理更改事件。 当一个无线电按钮更改( 选中) 时, 然后启用/ 禁用文本字段 。

举例如下:

Ext.create ( Ext.container.Container , {
    renderTo: Ext.getBody () ,
    items: [{
        xtype:  textfield  ,
        id:  tf  ,
        disabled: true ,
        fieldLabel:  My Text 
    } , {
        xtype:  radiogroup ,
        fieldLabel:  Enable / Disable  ,
        columns: 2,
        vertical: true,
        items: [{
            boxLabel:  Enable ,
            name:  formtype  , 
            inputValue:  1  ,
            listeners: {
                change: function (cb, nv, ov) {
                    if (nv) Ext.getCmp( tf ).enable ();
                }
            }
        } , {
            boxLabel:  Disable , 
            name:  formtype , 
            inputValue: 2 ,
            checked: true ,
            listeners: {
                change: function (cb, nv, ov) {
                    if (nv) Ext.getCmp( tf ).disable ();
                }
            }
        }]
    }]
});

再见

问题回答

如果您将听众更改事件设置在收音机组本身( 不是每个按钮), 您只需要处理一个事件。 您的收音机/ 手将调用并传递 < code> newVal 和 < code> oldVal 。 然后您可以将 < code> newVal 作为选中的值抓取 。





相关问题
ExtJS load form items/fields from database

I am using ExtJS 3 here. I would like to populate a formpanel from database with fields to be submitted. Basically, I don t know witch fields my form will have and I want to generate all formpanel ...

How to use Ext JS for role based application

I am planning to use Ext JS for a large application. The application s features are role based. When user login, they only see menu and screen features related to them. My server side technology will ...

Dynamically adding a TabPanel to a Panel Region

I have a Panel layout with a TreePanel in one region. A user clicks on an node in the tree and a TabPanel should be displayed in another region with information, editing tools etc. for that tree node....

How to embed Json result within Extjs Panel?

I have some issues with Json result and embed it within the html of the Extjs Panel. Here s that I have managed to get so far. myPanel is embedded within a mainPanel, and I have some shows/hide of ...

Ajax data update. Extjs

I need to keep certain data ( in a grid) up to date and was gonna do a poll to the server every 15 seocnds or so to get the data and refresh the grid, however it feels a bit dirty ( the grid will have ...

Better way to call superclass method in ExtJS

All the ExtJS documentation and examples I have read suggest calling superclass methods like this: MyApp.MyPanel = Ext.extend(Ext.Panel, { initComponent: function() { // do something MyPanel ...

Merged Headers in Ext JS Grid

Is it possible to have two headers in Ext JS grids? I have to show my grid as grouped data.. for example product types and products. In my case I need a grid like this: Field | Product Type A ...

热门标签