When writing an error prompt, how do we tell the user the error happens in a specific tab?
https://en.wikipedia.org/wiki/Tab_(interface)
I have made a medical record application that allows someone to record data about someone, but the application also allows us to add the data of a relative. So basically you can have a tab for the main user, and a tab for a relative like the spouse and enter them at the same time, because of this, all error prompt must indicate to the user in which tab the error occurred. So for example:
The last name can only contain alphanumeric characters (tab: Robert).
The problem with the above is that it looks weird, so I am wondering if there's a better way for it. I have never used an application that indicates in which tab an error occurred, so I have no idea what format I should use for the error prompt.
This post was sourced from https://writers.stackexchange.com/q/45654. It is licensed under CC BY-SA 3.0.
1 answer
I think the weirdness you're encountering is that you're using technical speak to convey something to the user who doesn't need to know that.
To you this is a tab. While many (most?) people who use computers are familiar with tabs, they probably won't think of their spouse or child as a tab.
So use whatever term the program uses for each person (taking care not to confuse whatever term the program uses for the primary subscriber vs additional people).
- Subscriber
- Family member
- Member
- User name
For example, in the online program for my health insurance, the central location is called the "member account" and each individual is called the "patient."
Patient Robert Jones-Hernandez: Last name can only contain alphanumeric characters.
or:
Jones-Hernandez is not a valid last name. Please use only letters and numbers.
(Though why you would allow numbers and not hyphens is beyond me.)
Ideally, your program will give feedback before the user leaves that tab. Isn't there a submit button when adding a new patient? (Or when editing an existing patient.) Why would the user even be on a different tab when submitting changes?
But if for some reason this happens, just use the same terminology you use when getting the user to set up the different entries to begin with.
0 comment threads