Editable BinLocationDesc in SOH
Back in 7.0.175, the bin was editable in SOH, Transaction Detail.
In 7.2.1, it can only be set via the lookup.
I was hoping I could get that col unlocked so users can type into it, but I tried to use the following code which didn't work. I knew it wouldn't be that easy!
Clues?
In 7.2.1, it can only be set via the lookup.
I was hoping I could get that col unlocked so users can type into it, but I tried to use the following code which didn't work. I knew it wouldn't be that easy!
- Code: Select all
private void inventory_FormLoad(object sender, System.EventArgs e)
{
JiwaFinancials.Jiwa.JiwaInventoryUI.InventoryMaintenanceForm invForm = (JiwaFinancials.Jiwa.JiwaInventoryUI.InventoryMaintenanceForm)sender;
invForm.grdSOH.LockColumn(false,"BinLocation", -1);
}
Clues?