Epicor Configurator - Display Specification Attribute Max/Min on the Configurator

I am trying to figure out how to display the min and max so the user can see this while inputting the value for the attribute. So the Inspection Plan interface would look something like the image. Do i need to use C# or is there a way to do it with the toolbox and input properties?

You would need to have something that would populate the min/max inputs. My question would be "Why make this a text box? Why not simply make it a Label? Label’s are “Cheaper” and have less overhead for the configurator. You can change the label to be whatever you want with C#.

for YOUR version, you would need something that says:

Inputs.txtDist02Max.Value = string.Format("{0}",Inputs.myinput.MaxValue);

or if you change this to a label, you could create a single label and do something like:

Inputs.lblDist02MinMax.Label = string.Format("min = {0} max = {1}",Inputs.myinput.MinValue,Inputs.myinput.MaxValue);
2 Likes

Thanks Tim the Labels were a better option, its working now.

1 Like