惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

J
Java Code Geeks
G
Google Developers Blog
有赞技术团队
有赞技术团队
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Blog — PlanetScale
Blog — PlanetScale
罗磊的独立博客
博客园 - 聂微东
V
Visual Studio Blog
博客园_首页
D
DataBreaches.Net
腾讯CDC
I
InfoQ
F
Fortinet All Blogs
量子位
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 【当耐特】
Google DeepMind News
Google DeepMind News
人人都是产品经理
人人都是产品经理
云风的 BLOG
云风的 BLOG
月光博客
月光博客
Recent Announcements
Recent Announcements
MongoDB | Blog
MongoDB | Blog
C
Check Point Blog

博客园 - 菩提树

导出EXCEL数据时防止数值变科学计数的办法 EXTJS4的MVC的简单理解 ASP导出EXCEL乱码?试试这个 EXTJS记事本:当CompositeField遇上RowEditor EXTJS框架中由于ID重复引起的各种异常的解决方法 关注杂交应用程序 绕人的python汉字问题 - 菩提树 - 博客园 原创:嵌入图片的HTML内容在FLASH AS3中正确显示的最佳解决方案 关于用Combo.Setvalue初始化COMBO值的备忘 万能的回调 - 菩提树 - 博客园 EXTJS动态载入组件定义文件并初始化组件,动态构造界面的方法. ServerXmlHttp折腾死人了 补充:ASP Json Parser修正版 不完整的CSS样式文件会让Dreamweaver崩溃 注意检查你代码中的逗号 EXTJS中设置ComboBox的值 - 菩提树 - 博客园 EXTJS:拖动对行进行排序 将Json字符串转换为ASP对象(parse json string to asp object) 一句简单的SQL语句,找出表中某个字段的重复值
ExtJS Formpanel事件处理的标准写法
菩提树 · 2008-12-27 · via 博客园 - 菩提树


Ext.onReady
(
    
function()
    {
        
var form1= new Ext.FormPanel(
        {
        title:
"Json测试",height:300,width:400,
        items:[{xtype:
"textarea",width:200,height:200,fieldLabel:"Json值",disabled:true},{xtype:"button",type:"submit",text:"演示",handler:function()
        {
        form1.getForm().submit({url:
"your url here",method:"POST", waitMsg:"正在提交,请稍候",    waitTitle:"提示信息",
        success:
function(form,action)
        {
        
//成功处理
        },
        failure:
function(form,action)
        {
        
//失败处理
        }
        });
        }}        
        ],
        renderTo:Ext.getBody(),
        standardSubmit:
false
        }
        );
        
    }
)
//