//页面按钮点击展开隐藏
{     空格
                    xtype:'fieldset',
                    title:'<b>高级搜索</b>',
                    collapsible: true, //默认显示页面隐藏
                    collapsed: true, //默认显示页面隐藏
             
                    items:[{
                        xtype:'panel',
                        title:'受理范围',
                        height: 245,
                        collapsible:true,
                        items:[{
                            xtype:'kindeditor',
                            height:200,
                            name:'visa_range'
                        }]
                    },{
                        xtype:'panel',
                        title:'所需材料',
                        height: 245,
                        collapsible:true,
                        items:[{
                            xtype:'kindeditor',
                            height:200,
                            name:'visa_data'
                        }]
                    },{
                        xtype:'panel',
                        title:'详情说明',
                        height: 245,
                        collapsible:true,
                        margin:'10 0 10 0',
                        items:[{
                            xtype:'kindeditor',
                            height:200,
                            name:'visa_detail'
                        }]
                    },{
                        xtype:'panel',
                        title:'办证流程',
                        height: 245,
                        collapsible:true,
                        margin:'10 0 10 0',
                        items:[{
                            xtype:'kindeditor',
                            height:200,
                            name:'visa_flow'
                        }]
                    }]
         }
 
 
//页面累加功能
 {
                            xtype: 'container',
                            layout: 'vbox',
                            items: [
                                {
                                    xtype: 'button',
                                    text: '添加',
                                    handler: function(btn) {
                                        var con = btn.up();
                                        var len = con.items.length;
                                        con.add({
                                            xtype: 'container',
                                            layout: 'hbox',
                                            items: [
                                                {
                                                    xtype: 'textfield',
                                                    fieldLabel: '文本' + len
                                                },
                                                {
                                                    xtype: 'button',
                                                    text: '移除',
                                                    handler: function(bb) {
                                                        var con1 = bb.up();
                                                        con.remove(con1);
                                                    }
                                                }
                                            ]
                                        });
                                    }
                                }
                            ]
                        }
//提交按钮样式
 {
                    text:'提交',name:'ok',
                    cls:'btn btn-success',
                    handler:function(){
                        //找到当前窗口
                        var thiswindow =this;
                        this.up('addVisaView').down('form').submit({
                            waitMsg:'正在提交中',
                            clientValidation: true,
                            submitEmptyText: false,
                            url:__APP__+'Visa/addVisa',
                            params:{},
                            success:function(form, action){
                                console.log(action.result);
                                if(action.result.success == "true"){
                                    if(datas['rid']){
                                        Ext.Msg.alert('提示','编辑成功');
                                    }else{  
                                        Ext.Msg.alert('提示','添加成功');
                                    }
                                    thiswindow.up('addVisaView').close();
                                    Ext.getCmp('addListView').getStore().load();
                                } else {
                                    // console.log("=====");
                                    // Ext.Msg.alert('提示', action.result.msg);
                                    Ext.Msg.alert('提示', "添加失败");
                                }
                            },
                            failure:function(form, action){
                                console.log(action.result);
                                // Ext.Msg.alert('提示', action.result.msg);
                            }
                        });
                    }
                } 
 
//操作按钮换成图标(var  与   if)

var m_confiureAuthRole = "<a href='javascript:void(0)' onclick=configureAuthRole("+record.get('id')+")>"+"<img src='./Gui/Public/Common/images/xinxi/s_44.png' title='设置权限'>"+"</a>&nbsp&nbsp&nbsp&nbsp";

if(data.name=='distributionGroup_editProduct')setProductOfProductGroup = "<a href='javascript:void(0)' onclick=productDistributionView_setProductOfProductGroup('"+m_distributionGroupId+"')>"+"<img src='./Gui/Public/Common/images/xinxi/s_102.png' title='"+data.title+"'>"+"</a>&nbsp&nbsp";

//直接汉字
<img src="./Gui/Public/Common/images/xinxi/s_03.png" title="+编辑+">

<img src='./Gui/Public/Common/images/xinxi/s_03.png' title='恢复绑定'>

//循环的操作改图标

Ext.Array.each(value,function(mv){
//console.log(mv);

var orderinfo = '';
if(mv.name == 'resendCode')
{
orderinfo = "<img src='./Gui/Public/Common/images/xinxi/s_11.png' title='"+mv.title+"'>";
}else if(mv.name == 'delayOrders')
{
orderinfo = "<img src='./Gui/Public/Common/images/xinxi/s_12.png' title='"+mv.title+"'>";
}else if(mv.name == 'showOrders')
{
orderinfo = "<img src='./Gui/Public/Common/images/xinxi/s_13.png' title='"+mv.title+"'>";
}else if(mv.name == 'noteOrders')
{
orderinfo = "<img src='./Gui/Public/Common/images/xinxi/s_14.png' title='"+mv.title+"'>";
}else if(mv.name == 'refundOrders')
{
orderinfo = "<img src='./Gui/Public/Common/images/xinxi/s_113.png' title='"+mv.title+"'>";
}
var data = "<a href='javascript:void(0)' onclick=allOrderListView_orderFunc_"+mv.name+"('"+recordId+"','"+orders_id+"','"+orderNO+"')>"+orderinfo+"</a>";
operationStr.push(data);
//console.log(operationStr);

});

return operationStr.join('&nbsp');
}

 
 
 //页面弹出显示列表

'<table>',


'<tr>',
'<td><div style="color:rgb(56,146,211);width:80px;float:left;text-align:left">状态:</div>{status.name}&nbsp;&nbsp;</td>',
'<td style="padding-left:104px"><div style="color:rgb(56,146,211);width:80px;float:left;text-align:left">电子码:</div>{code}</td>',
'</tr>',

'<tr>',
'<td><div style="color:rgb(56,146,211);width:80px;float:left;text-align:left">产品名称:</div>{scenicSpotTicketName}&nbsp;&nbsp;&nbsp;&nbsp;</td>',
'<td style="padding-left:104px"><div style="color:rgb(56,146,211);width:80px;float:left;text-align:left">单价:</div>{unitPrice}</td>',
'</tr>',

'<tr>',
'<td><div style="color:rgb(56,146,211);width:80px;float:left;text-align:left">退款数量:</div>{refundNum}&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td>',
'<td style="padding-left:104px"><div style="color:rgb(56,146,211);width:80px;float:left;text-align:left">退款金额:</div>{returnPrice}</td>',



'</tr>',




'<tr>',
'<td><div style="color:rgb(56,146,211);width:80px;float:left;text-align:left">申请时间:</div>{createTime}&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td>',
'<td style="padding-left:104px"><div style="color:rgb(56,146,211);width:80px;float:left;text-align:left">手续费:</div>{refundPoundagePrice}</td>',

'</tr>',


'<tr>',
'<td><div style="color:rgb(56,146,211);width:80px;float:left;text-align:left">手续费类型:</div>{refundPoundageType.name}{refundPrice}&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td>',
'<td style="padding-left:104px"><div style="color:rgb(56,146,211);width:80px;float:left;text-align:left">退款类型:</div>{refundType.name}</td>',

'</tr>',

'<tr>',
'<td><div style="color:rgb(56,146,211);width:80px;float:left;text-align:left">退款原因:</div>{refundReason}&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td>',
'<td style="padding-left:104px"><div style="color:rgb(56,146,211);width:80px;float:left;text-align:left">退款人:</div>{createdBy}</td>',

'</tr>',

'<tr>',
'<td><div style="color:rgb(56,146,211);width:80px;float:left;text-align:left">审核人:</div>{auditBy}&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td>',
'<td style="padding-left:104px"><div style="color:rgb(56,146,211);width:80px;float:left;text-align:left">审核时间:</div>{auditAt}</td>',

'</tr>',

'<tr>',
'<td><div style="color:rgb(56,146,211);width:80px;float:left;text-align:left">审核说明:</div>{auditNotes}&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td>',

'</tr>',


'</table>',

//列表页面对应

{
xtype:'fieldcontainer',layout:{type:'hbox',align:'middle'},width:800, //包含里面页面
items:[{

xtype: 'filefield',
name: 'idnumber_img',
fieldLabel: '<b style="color:red">*</b>身份证上传',
buttonText: '浏览...',
disabled: sz_check,
width: 160,
buttonOnly: true,
style: 'float:left'

}, {
xtype: 'panel',
width: 65,
height: 25,
html: getDetailImageNode(business_licence_img),
labelWidth: 30,
style: 'float:left',
fieldLabel: '图片浏览'
}]

},

//登录加载页面

public/bass.css

app/tpl/index/index.html  登录加载静态页面

 
 
 
 
 
 
 
 
 

EXT总结例子的更多相关文章

  1. Ext部署在本地tomcat下运行例子

    我本地用的ext6+,从官网下载好Ext后解压到D盘,然后打开tomcat的server.xml,在Host标签内配置 <Context path="/ext-6.2.0" ...

  2. ExtJS学习(二)Ext组件模型

    Ext中所有的组件都继承自Ext.component,这种单根继承的模型保证所有组件都拥有相同的通用方法与生命周期,这样在后续对这些组件进行维护管理时将更加便捷,同时也保证了在进行布局时的便利. 组件 ...

  3. Ext.urlEncode与Ext.urlDecode

    Ext.urlEncode与Ext.urlDecode: 用于js对象和查询字符串之间的相互转换 Ext.urlEncode例子如下: /* Ext.urlEncode( object, [recur ...

  4. centos 7.0 phpize 扩展php

    phpize扩展php模块 phpize 所在目录 /usr/etc/php/bin/phpize 查看当前php配置情况 /usr/etc/php/bin/下面的php [root@localhos ...

  5. [ExtJS5学习笔记]第十七节 Extjs5的panel组件增加accodion成为折叠导航栏

    本文地址:http://blog.csdn.net/sushengmiyan/article/details/39102335 官方例子:http://dev.sencha.com/ext/5.0.1 ...

  6. EXT JS认识EXTJS,第一个EXTJS例子

    大部分内容转载自:http://blog.csdn.net/wanghuan203/article/details/8011112 和http://www.cnblogs.com/willick/p/ ...

  7. Ext js 应用例子

    <!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content ...

  8. sencha ext js 6 入门

    Sencha Ext JS号称是目前世界上最先进和最强大的.支持多平台多设备的JavaScript应用程序开发框架.首先看一下Ext JS的发展简史. 1 Ext JS发展简史 YUI-Ext的作者J ...

  9. Ext JS - 问答

    Ext JS - 问答 在下面你将可以找到关于Ext JS 的最常见问题的答复.如果没有找到您所需的答复,请访问 Ext JS 论坛或者提交一个支持申请. 如果你确信你的问题可以对本页有补充,请让我们 ...

随机推荐

  1. .NET程序员走向高端必读书单汇总

    .NET程序员走向高端必读书单汇总 一.知识树 1. 基本能力 1.1 数学 1.2 英语 1.3 语言表达 2. 计算机组织与体系结构 3. 算法与数据结构 4. 操作系统 5. 计算机网络 6. ...

  2. 推荐设计网站 站酷(ZCOOL)设计师互动平台

    推荐网址 http://www.zcool.com.cn/

  3. 高性能javascript学习笔记系列(5) -快速响应的用户界面和编程实践

    参考高性能javascript 理解浏览器UI线程  用于执行javascript和更新用户界面的进程通常被称为浏览器UI线程  UI线程的工作机制可以理解为一个简单的队列系统,队列中的任务按顺序执行 ...

  4. AMD and CMD are dead之KMDjs集成Blob一键下载全部build包

    更新 不zuo,[A/C]MD就不会死,所以kmdjs赢来来其伟大的版本0.0.6,该版本主要的更新有: 移除去了kmdjs.get(..).then的支持,只支持kmdjs.get(-,functi ...

  5. angular源码分析:angular中入境检察官$sce

    一.ng-bing-html指令问题 需求:我需要将一个变量$scope.x = '<a href="http://www.cnblogs.com/web2-developer/&qu ...

  6. 3D banner(CSS3+HTML5)

    1.这是一篇 3Dbanner制作的简易流程,支持高版本的chrome和firefox浏览器,俩浏览器显示可能会有些差异 2.没有兼容性代码,因为仅仅只是熟悉流程,希望小伙伴们自己改善哈(>﹏& ...

  7. Android Studio关于SVN的相关配置及从SVN检出项目

    一.安装配置: 如图,安装时必须自定义选择 command line 否则不会安装的 安装完成后,打开 IDE 的 setting 配置面板: 如上图路径 Version Control 下的 Sub ...

  8. Handler.sendMessage 与 Handler.obtainMessage.sendToTarget比较

    原文地址: http://www.cnblogs.com/android007/archive/2012/05/10/2494766.html 话说在工作中第一次接触android 的Handler ...

  9. iOS 字典与JSON相互转换

    iOS 字典与JSON相互转换 首先简单说一下为什么会写这种幼稚的文章. 现在的网络请求几乎都是AFN完成的,AFN也为我们写了了JSON转换字典的方法,但是不要忘记后台是一个很爱用JSON的人群,H ...

  10. (六)Maven之pom.xml文件简单说明

    通过前面几部分知识,我们对maven已经有了初步的印象,就像Make的Makefile.Ant的build.xml一样,Maven项目的核心是pom.xml.POM(Project Object Mo ...