我想修改PXUIField Enabled=false/true
使用现有的布尔字段
public abstract class lastBatNbr : PX.Data.IBqlField
{
}
protected String _LastBatNbr;
[PXDBString(10, IsFixed = true)]
[PXUIField(DisplayName = "Last Batch Nbr")]
public virtual String LastBatNbr
{
get
{
return this._LastBatNbr;
}
set
{
this._LastBatNbr = value;
}
}