ExtJs 笔记

1、隐藏panle的标题头,设置

     header:false,

 

container 的基本属性(部分):

applyTo / reanderTo : 渲染到 ...

autoEl: 使用写好的 HTML 代码构建Ext组件

           {

              xtype:'box',

              autoEl:"div",

              html:'div inner HTML'

           }  // div 代码显示成 EXT box

 

 

activeItem: 活动的元素

 

defaults:  child Element 的默认属性配置

 

cls: 相当于class属性

labelStyle: 相当于style

 

tbar:  top tool bar

items:  

bbar:  button tool bar

 

title:

fieldLable:

 

 

layout:

  • absolute
  • accordion
  • anchor
  • auto     Default
  • border
  • card
  • column
  • fit
  • form
  • hbox
  • menu
  • table
  • toolbar
  • vbox

 

hideLabel:

hideBorders:

hideMode:隐藏方式,有:visibility, offset, display

 

myGridPanel.on("click", function, scope=this, optionalParams);

你可能感兴趣的:(ExtJs)