Think I already know the answer to this, but is it possible to make the grid on a process screen editable? Ability to change one or two fields. I am pretty sure this is not possible but incase someone has a way around the norm would appreciate any insight.
Answer
Edit a Process Screens Grid
Best answer by edwardmcgovern53
OK. The Process Graphs by default have this behavior: Set all items in the grid except for the select check box to not be enabled.
You get around it by Setting the controls back to enabled in the RowSelected Event of the PXProcessing Grid for the process form. Thats the way that above screen did it and I found many others online. You can just set it right back to enabled
protected virtual void DacfromthePXProcesssing_RowSelected(PXCache sender, PXRowSelectedEventArgs e)
{
PXUIFieldAttribute.SetEnabled<DacfromthePXProcessing.usrSomeField>(sender, null, true);
}
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.