Questions tagged [inline-edit]
Inline edit is a design pattern that enables the user to edit text directly in the page without requiring going to a separate page or opening a dialog overlay. It makes the interaction more direct and intuitive as the user can edit the text in the same place where it is shown.
105 questions
1 vote
2 answers
101 views
How would you show review comments in a collaborative editor?
Imagine you have a system that allows you to write documents and then send them for review. You do your best on your first review but the reviewer notices the wording could be better and leaves an ...
1 vote
1 answer
122 views
How to add a new contact inside a form using a contact dropdown?
I have a form using a contact dropdown and I would like to add a contact if the contact isn't present in the list. I need at least 2 fields for a contact (firstname and lastname). For example : I've ...
1 vote
1 answer
146 views
Workflow steps with configuration setup UI
I have an application where users can setup workflow steps. The workflow setup is a editable table with a field for configuration. The issue I have is with this field. This field has some JSON snippet....
0 votes
1 answer
538 views
if using table rows inline-editable in mobile view the best practice as Ux
I am working on a data table with many columns, and I depend on inline editing when the user double click the row. currently, I am working on a responsive version for this table to be viewed on mobile,...
0 votes
1 answer
126 views
What should I do when I have 2 diferent edits for the same "object"
So in my use case I have a list of objects in a sidebar and the rest of the screen is a grid with different elements in there. I can modify them with the edit mode. There is one icon for every object ...
2 votes
1 answer
328 views
Entry point ("Item level" vs "Page level") and "Inline edit" vs "Edit page"
A project I'm currently working requires the user to be allowed to edit only certain items on the page. So the way the page is arranged now, a few items can be edited, and a few items aren't editable. ...
1 vote
2 answers
133 views
Editable name in a breadcrumb
I am searching for use cases that provides the user to edit the name of an asset in line, when is part of a breadcrumb. Is that case exist somewhere? (Saas) please mention the brand so i can have a ...
0 votes
0 answers
99 views
How to show "Read-only" (un-editable) content in a grid? Has to be a non-color reliant way so can't use gray color
How to show "Read-only" (un-editable) content in a grid? Has to be a non-color reliant way so can't use gray color. FYI, some content in this grid will be editable and the way it works is, ...
0 votes
2 answers
1k views
Inline edit icon vs Go to edit page edit icon
I have two pages with a table list of data. In page A, each row contains a lot of extra information, so clicking the edit icon directs the user to a full page info for editing. On the other hand, ...
0 votes
4 answers
350 views
Edit icon VS Edit CTA while redirecting the user to a different screen?
I need to redirect the user to a form which is on a different page after he clicks edit. So what is the best practice here, to use the pencil icon or edit button or anything else where it is clear ...
0 votes
1 answer
157 views
Bulk Add Items on mobile device
I want to allow users to add multiple entries to a list of rather complex items. The user needs to pick color number date dropdown dropdown (later a optional picture) putting this in a single page ...
1 vote
1 answer
1k views
Show feedback messages in an editable data grid
Any advice on how best to display success/error messages while editing fields in an inline data grid. I've got an editable grid where records are saved (and validations are performed) as the cells are ...
2 votes
1 answer
762 views
Inline edit: Should input fields be Editable by default, or force users to click Edit then Save?
I have a Settings page with various input fields, radio buttons, checkboxes etc. Currently, all the inputs are editable by default. There are three self-explanatory buttons at the top, RESET DISCARD ...
1 vote
1 answer
562 views
How should edit and delete inside a datatable work with each other?
I have a datatable that supports inline editing and deleting items It is doing everything server side (sort, filter and paginate) For editing I click on the Edit button to make the table editable Once ...
1 vote
1 answer
236 views
Datagrid inline editing autofocus and accessibility
We have a data list on which we can directly edit. When clicking on the pencil, the line goes from view mode to a form. That mechanism works well for our users but doesn't feel fast enough yet. We ...