• ExtJS专题(十):layout布局的使用(6)


  • form
  • 是一种专门用于管理表单中输入字段的布局 
.net代码 
  1. Ext.onReady(function() {  
  2.         var win = new Ext.Window({  
  3.             title: "form Layout",  
  4.             height: 150,  
  5.              230,  
  6.             plain: true,  
  7.             bodyStyle: 'padding:15px',  
  8.             items:   
  9.             {  
  10.                 xtype: "form",  
  11.                 labelWidth: 30,  
  12.                 defaultType: "textfield",  
  13.                 frame:true,  
  14.                 items:   
  15.                 [  
  16.                     {  
  17.                         fieldLabel:"姓名",  
  18.                         name:"username",  
  19.                         allowBlank:false  
  20.                     },  
  21.                     {  
  22.                         fieldLabel:"呢称",  
  23.                         name:"nickname"  
  24.                     },  
  25.                     {  
  26.                         fieldLabel: "生日",  
  27.                         xtype:'datefield',  
  28.                         name: "birthday",  
  29.                         127  
  30.                     }  
  31.                 ]  
  32.             }  
  33.         });  
  34.         win.show();  
  35.     });  

  • 相关阅读:
    linux命令应用之一
    HIVE配置错误信息
    二分查找(JAVA)
    HBase1.0.1.1 API与原来有所不同
    hbase shell中log4j重复问题
    hadoop本地库无法加载
    利用mapreduce将数据从hdfs导入到hbase遇到的问题
    HBase伪分布式环境下,HBase的API操作,遇到的问题
    Hadoop开发中,如何开启、关闭控制台打印调试信息
    Hadoop的mapreduce开发过程,我遇到的错误集锦(持续更新)
  • 原文地址:https://www.cnblogs.com/Leo_wl/p/1683627.html
  • Copyright © 2020-2023  润新知