I have datagrid, when press update button I made popup window. I want to pause update process while user fills popup window.

有帮助吗?

解决方案

You should start the Update only when you have all required info, not before the user fills in data in the popup window.

the first phase would be data capturing from user input, then you validate the data are correct, valid and sufficient and only then you start the update process whatever it means to you (you have given too few details...)

其他提示

You can do it with Javascript. First you should capture the event and return false. This prevents a postback. When the dialog is completely filled out and closed you can send the information to the server via as ajax call or trigger a traditional post.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top