Increase Part Description size

I have been asked to increase the size of Part Description. Drawing from my experience of Windows Desktop App Development, I have tried to do so in App Studio but have been unsuccessful. Is there a way to accomplish this?

Modifications can be done in Extended Maintenance however, stock fields can’t be modified. If you need a longer field I suggest you create a UD field on the Part table.

1 Like

I read this differently than @Randy

If you’re looking for more “displayed” information in the UI… You can add a text-area directly under the existing description text box. You can set the number of visible rows in the text-area properties.

Just set the binding to the same as the description field. Part.PartDescription, for example.

They’ll both show the same data and if you change one, they both change.

You can also remove the databinding to the description field if you don’t want the standard text-box description to be visible. The only drawback is you will lose the “translation” functionality.

4 Likes

Ah, yes, if you’re looking to expand the size on screen then your method is correct.

We have had the same issue because our part descriptions are quite long. Our solution was to create a custom layer in app studio that added a “text area” component to this screen and bind it to the same field (Part.PartDescription) as shown circled in red on your uploaded image. At this point, you can hide the original text box to avoid confusion, if you want. This text area will function just like the text box.

3 Likes

Looks like we were typing the same solution at the same time! :grin:

2 Likes

Jimmy Fallon Twins GIF by The Tonight Show Starring Jimmy Fallon

3 Likes

This suggestion works fine and dandy. Thank you guys!!!

4 Likes

Part.PartDescription is already an unlimited length (nvarchar(max)) DB field.

1 Like

Please remember to mark the solution to your question so that others can quickly learn from this by identifying the exact post that solved your issue.

We had a similar request and found that description was used on labels. :person_facepalming:

Often users ask for text when maybe we’re better off putting information into dedicated fields. Large memo fields are for humans, but fields are better for automation.