Newbies dr9000 Posted April 28, 2014 Newbies Posted April 28, 2014 I have a invoice layout that only has room for 10 portal rows. I'd like the last portal row to show something like "X addition items" if there are more than 10 items in the portal. If someone could point me to some examples of how this might be done, it would be very helpful. Thanks.
comment Posted April 28, 2014 Posted April 28, 2014 Why don't you simply set up the portal to show a scroll bar? 1
Fitch Posted April 28, 2014 Posted April 28, 2014 I agree with comment, but I have had customers request this. One solution is, create a calc field and put it below the portal (not on the last row): Let( rows = Count(related::id) - 10 ; Case( rows > 0 ; rows & " additional items" ) ) The downside of doing something like this is that you can't take advantage of object auto-resizing. Welcome to the forums.
Newbies dr9000 Posted April 29, 2014 Author Newbies Posted April 29, 2014 Why don't you simply set up the portal to show a scroll bar? I do have a scroll bar in the main layout but this is for a printable view that gets handed out to techs. I agree with comment, but I have had customers request this. One solution is, create a calc field and put it below the portal (not on the last row): Let( rows = Count(related::id) - 10 ; Case( rows > 0 ; rows & " additional items" ) ) The downside of doing something like this is that you can't take advantage of object auto-resizing. Welcome to the forums. Thanks, I'll give that a try.
comment Posted April 29, 2014 Posted April 29, 2014 this is for a printable view that gets handed out to techs Then why not print from the child table and print all the required records? Surely that would be more useful than "there are 6 more items that could be important but we're not going to tell you anything about them"?
Recommended Posts
This topic is 3930 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now