1.文本框不可编辑:
A: enabled="false"
<g:Label id="lbl_fullQty" width="125" x="{X+4*XG}" y="{Y+6*YG+3*YH}" text="批次号" textAlign="left"/>
<g:TextInput id="" width="125" fieldName="fullQty" enabled="false" value="0"/>
B: 编辑模式
<g:PagingGrid width="100%" id="pagingGrid" editMode="pop" />
editMode: 1、none:Grid不能编辑
2、pop: Grid以弹出窗口的形式编辑
3、inner:在Grid内部编辑
C: 类表框编辑属性 editable="false"
<g:DataGridColumn id="dgcCdpaCode" headerText="包装代码 *" dataField="cdpaCode" width="100">
<g:itemEditor>
<mx:Component><g:TextInput editable="true" maxChars="30" change="{this.outerDocument.action.toUpperStr(event)}"/></mx:Component></g:itemEditor></g:DataGridColumn>