Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有谁知道如何创建一个简单的 ExtJS '弹出表单',这意味着用户在网格上选中一个复选框(网格有几个复选框,每个复选框都会弹出不同的表单字段),屏幕上会出现一个弹出窗口来询问对于用户的某些输入,该信息将显示在网格上。
像这样
{ boxLabel : 'Anchovies', name : 'topping', inputValue: '1', id : 'checkbox1', listeners: { change: function(cb, newValue, oldValue, eOpts) { if(newValue === true) Ext.Msg.alert('Notify', newValue); } } }