RyanESmith7 Posted July 3, 2013 Posted July 3, 2013 I have a layout that displays "Job Notes" for historical review purposes. It is read only. The problem that I have is if a note contains a really long text, the user cannot see it all. What is the best way to display all of the data without having to create ridiculously large edit boxes? Most of these are one or two lines, but sometimes they put in a lot of text. An example is attached. Â
David Jondreau Posted July 3, 2013 Posted July 3, 2013 You could put the info in a tooltip. Or make the field enterable, but not editable (via the field definitions...Prohibit modfication...). 1
RyanESmith7 Posted July 4, 2013 Author Posted July 4, 2013 Thanks for the reply, David. Tooltips won't work on the iPad, although it might be a solution on the desktop. Unfortunately, there are some layouts where the field must be editable. I was hoping to find a solution per layout, which I kind of did. I made the field enterable, but on the layouts where I don't want the user to change the data, I have put a script on the OnModify to revert the changes. Not the cleanest solution, but it works.
Brooks Posted July 4, 2013 Posted July 4, 2013 Use the on object key stroke trigger and stop them before the data can be changed
Vaughan Posted July 5, 2013 Posted July 5, 2013 Create a calculation text field that is = the other field, and put this cal field on the layout. Allow entry into the field and users can scroll, select and copy the text but cannot edit it (because it's a calc field).
LaRetta Posted July 5, 2013 Posted July 5, 2013 You can also use a web viewer because it allows scroll but you can uncheck allowing interaction and no expense of a calc field. 1
RyanESmith7 Posted July 9, 2013 Author Posted July 9, 2013 Wow, thanks for all the great responses! I will test them out.
RyanESmith7 Posted July 9, 2013 Author Posted July 9, 2013 Ok, LaRetta, I don't know how to display just a field in a web viewer.
LaRetta Posted July 9, 2013 Posted July 9, 2013 No problem. "data:text/html," & tableName::fieldName 1
RyanESmith7 Posted August 5, 2013 Author Posted August 5, 2013 Late with the thanks... but THANK YOU!
Recommended Posts
This topic is 4130 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