Skip to main content

What I want is for these fields and button to be disabled or, rather, in read-only mode. Not like in this case, which is due to validation:
https://community.acumatica.com/develop-customizations-288/why-is-the-kit-line-detail-form-always-disabled-24699?tid=24699&fid=288

 

 

If you are wanting these to always be read only, can you not do it with access rights?


I can't find that field in access rights


Hi ​@rodolfobarrios52 were you able to find a solution? Thank you!


Has anybody solved this? I can’t find that within access rights by screen either.


I also do not see it under Access Rights, not sure why this might be. The alternative you could try is with a customization using rowselected event handler something like this:

 

PXUIFieldAttribute.SetEnabled<LotSerOptions.qty>(e.Cache, row, false);
PXUIFieldAttribute.SetEnabled<LotSerOptions.startNumVal>(e.Cache, row, false);

extension.generateNumbers.SetEnabled(false);


Reply