When I use Ajax, the Model parameter in a custom pop-up editor template is not the selected value. It's a default value, or null. I can still bind to Linq expressions in the helper on the editor template where that is possible. However, if I use Server, Model is the selected value.
In other words, for both Ajax and Server, I may use, for example, m => m.Name where applicable. Only with Server may I use @Model.Name anywhere on the view.
Why is that? Is there a remedy?