Add File to Line Comments in PO Entry

I tried the final example from your post, but couldnt get it working. It seems the text area can show the line breaks, but I can’t insert them via code. For now, the end use will have to manually line break the comments. Thats is fine. Adding a file was a big hurdle, and makes this a bit more useful.

If anyone gets the line breaks via code to work, let us know!
App Studio - Text Area w/ Line Breaks - Kinetic ERP - Epicor User Help Forum

3 Likes

So to get my text field to not chew up the line breaks, I used property-set, and row-update in sequence. This seems to have done the trick!

In my PO Entry Line Details, I added a new container to make the line comments span the entire page. I left the original Epicor name in place for that text area.

Then in my onClick event, I have this:


Property set on component id PODetail.CommentText, with props: Prop=value, Value=“{PODetail.CommentText} {actionResult.OutText}”.

Row-update on epbinding PODetail.CommentText, with the Value “{PODetail.CommentText} {actionResult.OutText}”

2 Likes