Skip to main content

Table View Tutorial. Step 2: Enable User-Friendly Content and Layout

  • 6 minutes to read

In the previous step, you populated the control with data. This step makes data more user-friendly format and shows how to do the following:

  • Manage and customize grid columns.
  • Use lookup editors and repository items.
  • Create calculated expressions.
  • Display column cell values in preview sections.

Step 2 Result

Column Management

Click the “Customize…” button in the Structure Navigator to open the Component Editor.

Component Editor

Delete

The View’s data controller now contains many columns. Delete the following columns that are not used this tutorial:

  1. tvEmployeesRecId
  2. tvEmployeesId
  3. tvEmployeesPersonalProfile
  4. tvEmployeesFullName
  5. tvEmployeesPrefix
  6. tvEmployeesHomePhone
  7. tvEmployeesBirthDate
  8. tvEmployeesPictureId
  9. tvEmployeesAddress_Line
  10. tvEmployeesAddress_City
  11. tvEmployeesAddress_State
  12. tvEmployeesAddress_ZipCode
  13. tvEmployeesAddress_Latitude
  14. tvEmployeesAddress_Longitude
  15. tvEmployeesProbation_ReasonId
  16. tvEmployeesPicture

Hold Ctrl to select multiple columns. Press Delete or click the dialog’s Delete button.

Reorder

Arrange the remaining columns in the following order:

  1. tvEmployeesLastName
  2. tvEmployeesFirstName
  3. tvEmployeesDepartment
  4. tvEmployeesStatus
  5. tvEmployeesMobilePhone
  6. tvEmployeesEmail
  7. tvEmployeesSkype
  8. tvEmployeesTitle
  9. tvEmployeesHireDate

Select one or more columns and click “Move Up” or “Move Down” to rearrange them.

Column Multi Selection in Component Editor

Close the dialog.

Tip

You can drag and drop column headers to rearrange columns in the control.

Resize

Widen the form to display more columns. Set the form’s width and height to 880 and 400 pixels.

To fit all columns in the control‘s client area without a horizontal scrollbar, click the View and set the OptionsView.ColumnAutoWidth property to True.

Now certain columns have cropped captions and content.

Cropped Columns

Double-click the right border of each column to set their width according to content size.

Column Resize

Tip

You can drag a column’s right border to specify a custom width.

Change Captions

You can modify a selected column’s settings in the Object Inspector. Click a column header to select a column.

Add spaces to column captions that consist of more than one word.

Modified Captions

Add Glyphs to Captions

Add glyphs to the Mobile Phone, Email, and Skype column headers.

Select the Mobile Phone column and use the HeaderGlyph property to assign a glyph to the column. Click the ellipsis button to open the Image Picker dialog.

Open the DevExpress Icon Library tab, select the DevAv collection, enter “mobilephone” in the Search Box, and double-click the corresponding icon.

Image Picker Steps

Resize the column (if required) to fit its content in full.

Then configure the Email and Skype columns in the same way. Assign the “mail” and “skype” glyphs to them.

The image shows the result:

Header Glyphs

Configure Visibility

Hide the tvEmployeesTitle and tvEmployeesHireDate columns because their content is intended for calculated expressions rather than user interaction.

Select the columns and follow the steps below:

  1. Set the Visible property to False.

  2. Set the VisibleForCustomization property to False to exclude the columns from the Customization Form and the Quick Column Customization drop-down menu.

  3. Assign True to the VisibleForExpressionEditor property to use the selected columns as a data source for calculated expressions.

Column Visibility Settings

Lookup Editor

Add Lookup Data Sources

This section explains how to use lookup editors to display user-friendly text instead of IDs in the Department and Status columns. First, create two more datasets in the same manner as in the previous step:

  1. Add two TdxMemData components and name them mdDepartments and mdStatuses.
  2. Add two TDataSource components and name them dsDepartments and dsStatuses.
  3. Add columns from the Department and Status .dat files to these datasets. These files are available at the following path: C:\Users\Public\Documents\DevExpress\VCL\Demos\ExpressQuantumGrid\Data\
  4. Load records to the datasets from the same files.

Assign a Lookup Editor

Now associate the Department and Status columns with a lookup combo box that can display values from the bound data source. Select the columns and assign LookupComboBox to the Properties property.

Specify Lookup Settings

Click the Department column to display its settings in the Object Inspector. Expand the column’s Properties property and follow the steps below to replace indexes with strings:

  1. Assign dsDepartments to the editor’s ListSource property.

  2. Set the KeyFieldNames property to Department_ID to specify the name of the data source field whose values are used to identify data records.

  3. Set the ListFieldNames property to Department_Name to specify the data source field whose values should be displayed in column cells instead of department indexes.

Column Data Binding Settings

Configure the same settings for the Status column:

  1. Set dsStatuses as the editors’s data source.
  2. Assign StatusID and Status_Name to the KeyFieldNames and ListFieldNames properties, respectively.

Tip

Press Ctrl+H to hide non-visual components that can overlap the View’s content.

The image below shows the result.

Column_Data_Binding_Result

Now convert plain text in the Email and Skype columns to hyperlinks.

Add a TcxEditRepository component to the form. This component allows you to customize column editors and then re-use them within multiple columns.

Double-click the component to open the Edit Repository dialog.

Click Add… in the dialog, select a hyperlink item.

Edit Repository Dialog

Close the dialog and rename the item erHyperLinkItem1 in the Object Inspector.

Select the Email and Skype columns and assign erHyperLinkItem1 to the RepositoryItem property.

The image below shows the result.

Hyperlink Item

Display Lengthy Data in Preview Sections

Assign a Calculated Expression to a Column

You can use an expression to calculate results based on column cell values.

Create a column to populate it with expression results. Right-click a column header and select “Create Column” in the context menu.

Create Column Context Menu Item

Tip

A click on “Create Column” in the View’s context menu also appends a column to a collection. Right-click the Table View in the Structure Navigator to invoke the menu.

Select the newly created column, and change its name and caption to tvEmployeesQualification and Qualification, respectively.

Expand the column’s DataBinding property in the Object Inspector and follow the steps below:

  1. Click the Expression property’s ellipsis button to open the Expression Editor dialog.

  2. Input the following expression to the Expression Box: CONCATENATE([Title],', employed ',INT(YEARFRAC(TODAY(),[Hire Date])),' years').

    Note

    Value separator characters depend on the system locale. All expression examples listed in this tutorial are created for the English (United States) system locate. Change the locale-dependent characters in the example according to your current locale.

  3. Click OK to assign the expression to the column and close the dialog.

  4. Set the ValueType property to String.

  5. Resize the Mobile Phone, Email, and Skype columns to fit the newly created column in the control’s client area.

The following image shows the result:

Calculated Expression Result

Enable Preview Sections

Expand the View’s Preview property and configure preview sections as follows:

  1. Set the Column property to tvEmployeesQualification to group data rows by the Qualification column’s content.

  2. Assign True to the Visible property.

The following image shows the result:

Preview Sections

The View now displays data in a user-friendly format. The next step shows how to enable auxiliary View elements that allow a user to interact with the control.

See Also