Implementing Undo/Redo in a Web Application that uses Ajax
Option #1 – switch to Synchronous Assuming you are using jQuery, you can set the following option: $.ajax({ async: false }); This will … Read more
Option #1 – switch to Synchronous Assuming you are using jQuery, you can set the following option: $.ajax({ async: false }); This will … Read more
The goal of using AJAX for content should be to enhance the user experience, not to make the user experience depend on it. … Read more
In my opinion refreshing the page will not cause confusion because users tend to associate page refresh with updating information. If you like … Read more
After some discussion in the chat with @BenBrocka, it seems as if you’ve answered your own question. There’s nothing about RIAs that distinguish … Read more
There’s a lot of context that could change this but in the situation you describe updating on intervals is far better. Seeing things … Read more
a) To handle this, you should ask yourself how important is the file uploading in relationship with the others inputs. Is it in … Read more
Overall the idea shouldn’t be a problem but the location of the feedback could be. Imagine if in the future you have this … Read more
Yes, I agree. Not being able to open a link in a new tab/window is a bad UX practice. In addition, not using … Read more
You should show a spinner icon for each section as it loads. The main reason for saying this is that you have said … Read more