Ticket Q396028
Visible to All Users

GridView / ExportToPdf - Why does GridViewSettings have to be created in code in Controller (.cs) instead of in View (.ascx)?

created 13 years ago

In your Exporting example - http://mvc.devexpress.com/GridView/Export - the GridViewSettings have to be created in C# code in the controller.
BUT in every other example the grid view is created in the View (.ascx)
Why do we have to do it in C# for exporting?
There are two main problems with using C# instead of the View to create the grid settings:

  1. Some of the features we us do not seem to be possible when creating the grid in C#, eg hyperlinked columns that load the detail page: Doesnt seem to be possible in C# but in the View we can simply do this:
                    settings.Columns.Add(column =>
                    {
                        column.Caption = "Order No.";
                        column.SetDataItemTemplateContent(c =>
                            ViewContext.Writer.Write(
                                Html.ActionLink(DataBinder.Eval(c.DataItem, "OrderNumber").ToString(), "Update", "PurchaseOrder", new { id = DataBinder.Eval(c.DataItem, "Id") }, null)
                            ));
                        column.SetEditItemTemplateContent(c =>
                            ViewContext.Writer.Write(
                                DataBinder.Eval(c.DataItem, "OrderNumber").ToString()
                            ));
                        column.Width = 100; column.CellStyle.HorizontalAlign = HorizontalAlign.Left; column.EditCellStyle.HorizontalAlign = HorizontalAlign.Left; column.EditFormSettings.Visible = DefaultBoolean.False;
                    });
  2. Code duplication. Because we need the View for adding custom columns and the C# code for exporting we have to create the view settings twice. This is a bad idea because if we change one we can easily forget to change the other.

Answers approved by DevExpress Support

created 13 years ago (modified 11 years ago)

Hello Oscar,
Thank you for contacting us. Please refer to the E3898 - How to export GridView data to different output rich text formats Code Central example that describes all required steps in greater detail.
>>Why do we have to do it in C# for exporting?
GridViewSettings (especially the Name property) should be the same both in PartialView and Controller. In this case, the grid will apply client-side modification/layout (sorting, filtering state) during exporting.
I believe that assigning at least the same "Name" property should be enough.
>>Some of the features we us do not seem to be possible when creating the grid in C#
Please refer to the Q392014 - GridView - How to specify custom EditFormTemplate / SetEditFormTemplateContent from Controller report, where we discussed possible ways of accomplishing this task.
If you need any further assistance with this subject, create a corresponding ticket in our Support Center.
>>eg hyperlinked columns that load the detail page
Please note that exporting of templates' content is not supported. Refer to the Export Overview help topic for more information.
Thanks,
Mike

    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.