Skip to main content
A newer version of this page is available. .
Tab

ASPxCardViewPagerSettings.SettingsTableLayout Property

Provides access to the pager’s layout table mode settings.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.2.dll

Declaration

public CardViewTableLayoutSettings SettingsTableLayout { get; }

Property Value

Type Description
CardViewTableLayoutSettings

A CardViewTableLayoutSettings object that contains the layout settings.

Property Paths

You can access this nested property as listed below:

Library Object Type Path to SettingsTableLayout
ASP.NET Controls and MVC Extensions ASPxCardView
.SettingsPager.SettingsTableLayout
CardViewSettings
.SettingsPager.SettingsTableLayout
CardViewSettings<CardType>
.SettingsPager.SettingsTableLayout
MVCxCardView
.SettingsPager.SettingsTableLayout
ASP.NET Bootstrap Controls BootstrapCardView
.SettingsPager.SettingsTableLayout

Remarks

When the ASPxCardViewSettings.LayoutMode property is set to Table, cards are ordered in a table. Use the SettingsTableLayout property to access the flow layout settings.

Example

Developers often need to include several field values in a hyperlink displayed in CardView column cells. We recommend that you use templates in this instance. The following example uses two similar approaches to show how this is implemented:

1) In a simple case, the href parameter of the <a> element is defined by the KeyValue of the processed card. 2) In a complex case, the href parameter of the <a> element is defined in the server-side GetCardValues(Int32, String[]) method.

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>

<%@ Register Assembly="DevExpress.Web.v15.1, Version=15.1.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" Namespace="DevExpress.Web" TagPrefix="dx" %>

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title>How to use a hyperlink whose argument depends on several cell values in the ASPxCardView</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
    <dx:ASPxCardView ID="ASPxCardView1" DataSourceID="AccessDataSource2" KeyFieldName="CategoryID" PreviewFieldName="Notes" AutoGenerateColumns="False" EnableCardsCache="False" ClientInstanceName="cardview" runat="server" Width="1000px">
        <SettingsPager>
            <SettingsTableLayout ColumnCount="2" RowsPerPage="2" />
        </SettingsPager>
        <SettingsBehavior AllowFocusedCard="True" ConfirmDelete="True" />

        <Columns>
            <dx:CardViewTextColumn FieldName="CategoryID" ReadOnly="True" VisibleIndex="0">
            </dx:CardViewTextColumn>
            <dx:CardViewTextColumn FieldName="CategoryName" VisibleIndex="1">
            </dx:CardViewTextColumn>
            <dx:CardViewTextColumn FieldName="Description" VisibleIndex="2">
            </dx:CardViewTextColumn>
            <dx:CardViewTextColumn Caption="Simple Hyperlink Column" VisibleIndex="3">
                <DataItemTemplate>
                    <a id="clickElement" target="_blank" href="Default2.aspx?id=<%# Container.KeyValue%>"><%# "Show New Form, Key Field = " + Eval("CategoryID").ToString()%></a>
                </DataItemTemplate>                                    
            </dx:CardViewTextColumn>
            <dx:CardViewTextColumn Caption="Complex Hyperlink Column" VisibleIndex="4">
                <DataItemTemplate>
                    <a id="A1" target="_blank" href="Default2.aspx?id=<%# GetCardValue(Container)%>"><%# "Show New Form, CategoryName = " + Eval("CategoryName").ToString()%></a>
                </DataItemTemplate>
            </dx:CardViewTextColumn>
        </Columns>

    </dx:ASPxCardView>
        <asp:AccessDataSource ID="AccessDataSource2" runat="server" DataFile="~/App_Data/nwind.mdb"
        SelectCommand="SELECT * FROM [Categories]">
    </asp:AccessDataSource>    
    </div>
    </form>
</body>
</html>
See Also