I have an MVC application where the Controller starts a Thread and therein starts a progressbar inside the View the action originated and calls the Model to go over a list of data selected in a View and process it in some way.
Now while the Model is going over the data it encounters one or more entries that he wants the user to confirm for some reason. How should this be handled using MVC?
Note that the Controller can handle multiple views, which of them should be responsible for the user input, how to differentiate between them, ... ?