-
Notifications
You must be signed in to change notification settings - Fork 701
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Popup window text confusing when editing same document #9915
Comments
Thanks @xmarcux for the report and insight. I think there is room for improvement. I have added a code pointer bellow but before that I think it's good to clarify the purpose of this dialog before someone starts to work on that: That dialog servers the purpose of avoiding document conflicts. Example: User A was editing it online in the web browser while user B has edited a previous version locally and that has already arrived to the storage server via integrators sync client, another quit common case is when multiple users were editing at the same time (possibly with different internet connections) the document until they have reach a conflict. There are other examples but generally speaking that's the main idea. For that we need to offer the user to either discard his version of the document or overwrite the version that is already in storage. Dialog:
Here is what those changes would look like: Here is the code pointer: showDocumentConflictPopUp
```js
_showDocumentConflictPopUp: function() {
var buttonList = [];
var callbackList = [];
|
I have just tested this and @xmarcux you are right this is duplication of functionality here. We can remove cancel button from this Dialog. CC: @pedropintosilva |
Hi all,
When a user is editing a document and a second user opens the same document, you get a popup with a warning.
This is the view for the user opening the document while somebody else is already editing the document.
Sometimes the user that first opened and edited the document get the same popup at the same time.
Guessing that it has to do with sessions...
This text is quite confusing and our users get unsure what to do.
“I have just opened the document and have not done any changes, what is this?”
After some testing we realize that this must be due to some type of caching on the server side.
Would it be possible to change the wording or behavior of this functionality?
One way would be to change the wording to something like:
Or just inform the user and do not warn at all:
The behavior becomes the same as pressing “Overwrite” button in both suggestions above.
The "Discard" button is kind of dangerous as if the second user opening the document click "Discard"
all changes that the first user have changed will disappear.
The wanted behavior is the same as clicking "Overwrite" for the second user opening the document,
changes that the first user have made in the document is still there after the second user has loaded the document.
Thanks for a great system!!
The text was updated successfully, but these errors were encountered: