Bug Report B201601
Visible to All Users

The WriteLineToResponse method works incorrectly when partial views or templates with MVCx extentions are rendered before calling it

created 14 years ago

follow on to B201385, The suggestion:
settings.SetContent(() =>
                {
                    DevExpressHelper.WriteLineToResponse(
                    @Html.EditorForModel().ToHtmlString()
                    );
                }
 does not work for me.
Attached adjusted project.

Show previous comments (1)

    Hello Brent,
    Thank you for your patience. We have researched this issue and found out that it is caused by the Html.EditorForModel specifics. I am forwarding this bug report to our developers for further processing. They will research this issue and try to find a solution. As a temporary solution, you can use the following approach:

    C#
    settings.SetContent(() => { Html.RenderPartial("ModelEditors", Model); });

    ModelEditors.cshtml:

    C#
    ... @Html.EditorForModel()

    Attached a modified project.
    Regards,
    Mike

      Thanks Mike. Yes, I was in some instances, using the RenderPartial as u suggest. In most cases this creates unnessesary extra partial views. I shall await the fix :)
      Thanks, Brent

      DevExpress Support Team 14 years ago

        Hi Brent,
        Thank you for your patience. We greatly appreciate it!
        We have discussed this issue with our developers and found out that WriteLineToResponse does not work when partial views or templates with the MVCx extentions are rendered before calling it. I am afraid we cannot overcome this issue.
        Therefore, we decided to make WriteLineToResponse obsolete and use the ViewContext.Writer.Write method. You can learn more about this method here: ViewContext.Writer.
        In your case, please use the following code:

        C#
        settings.SetContent(() => { ViewContext.Writer.Write(Html.EditorForModel()); });

        In addition, I would like to note that we will update our documentation according to this issue in the next minor version release.
        Thanks,
        Marion

        Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

        Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.