I have an issue where I have a string property with UIHint.Textarea added to it so that I can put multiline text into the field. The controller/view takes what is entered into that field and does some server side tranformation of it and spits out a structure the view uses to populate the page. So in order for me to enable on-page editing I have added the edit attributes so that it shows a popup of the textarea editor for it, but I need a full-page refresh before the results of editing that field can be shown. Inline replacement of the markup wont work in this case due to the server side code that transforms it. So I added the field to the FullRefreshPropertiesMetaData method call, but this refresh is triggered on every key stroke, rather than when the edit dialog is closed. Does anyone know a way to delay the refresh until the dialog is closed, or maybe some other methodology of on page editing that would work in this case? It feels like my only option is to exclude this field from on page editing.
↧