2

我想修改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;
    }
}
4

0 回答 0