Ticket T1285502
Visible to All Users

Blazor Grid with ComboBox

created 3 days ago

In the attached project, Index.razor contains a DxGrid.
When adding or editing the 'Target' column uses a DxComboBox to select a value.
The combobox is populated with a list of 'TargetCls', which has 2 properties, Target and Text.
How can I display the 'Text' value in the Target column of the grid, when displaying and not editing?
I have looked at some samples and can't seem to get it.

Answers approved by DevExpress Support

created 3 days ago

Hello,

Thank you for the example.

The grid does not have direct access to the DxComboBox values. To achieve your goal, you can handle the CustomizeCellDisplayText and display the text of the data item that matches the cell value.

For example:

C#
void Grid_CustomizeCellDisplayText(GridCustomizeCellDisplayTextEventArgs e) { if (e.FieldName == "LinkTarget") { e.DisplayText = TargetList.Where(t => t.Target == ((string)e.Value)).FirstOrDefault()?.Text; } }

Please let us know if you have further questions.

    Comments (3)

      Thank you. That works great for my current application.
      How would that perform with a large dataset?
      Is there another method that would perform better with a large dataset?

      John (DevExpress Support) 2 days ago

        Hello,

        Thank you for your reply.

        Generally, it will depend on how your grid is configured. For example, if you implement virtual scrolling for large datasets, the performance will greatly improve with this approach since the CustomizeCellDisplayText event will only be triggered for cells of rows that are visible in the viewport. An alternative to this solution would be the usage of CellDisplayTemplate, however, it will be less performant for larger datasets because it will need to render the HTML content of each cell.

        If you do not want to use any of these solutions, you also have the option to use the Text property as the column's data field instead. However, you will need to reconfigure your grid data to use this value instead of Target.

        Regards,
        John

          Thank you!

          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.