Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

When writing an error prompt, how do we tell the user the error happens in a specific tab?

+0
−0

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.

History
Why does this post require moderator attention?
You might want to add some details to your flag.
Why should this post be closed?

This post was sourced from https://writers.stackexchange.com/q/45654. It is licensed under CC BY-SA 3.0.

0 comment threads

1 answer

+0
−0

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.

History
Why does this post require moderator attention?
You might want to add some details to your flag.

0 comment threads

Sign up to answer this question »