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

ASPxClientCardView.CardDblClick Event

Fires on the client when a card is double clicked.

Declaration

CardDblClick: ASPxClientEvent<ASPxClientCardViewCardClickEventHandler<ASPxClientCardView>>

Event Data

The CardDblClick event's data class is ASPxClientCardViewCardClickEventArgs. The following properties provide information specific to this event:

Property Description
cancel Gets or sets a value indicating whether the action which raised the event should be canceled. Inherited from ASPxClientCancelEventArgs.
htmlEvent Provides access to the parameters associated with the ASPxClientCardView.CardClick event.
visibleIndex Gets the processed card’s visible index.

Example

This example shows how to switch ASPxCardView to edit mode by double-clicking a card. To do this, handle the ASPxClientCardView.CardDblClick client-side event and call the ASPxClientCardView.StartEditCard method.

<dx:ASPxCardView ID="ASPxCardView1" KeyFieldName="ID" AutoGenerateColumns="False" runat="server" ClientInstanceName="card">
    <ClientSideEvents CardDblClick="function(s, e) {
        s.StartEditCard(e.visibleIndex);
    }" />
    <Columns>
        <dx:CardViewTextColumn FieldName="ID" VisibleIndex="0">
        </dx:CardViewTextColumn>
        <dx:CardViewTextColumn FieldName="Data" VisibleIndex="1">
        </dx:CardViewTextColumn>
    </Columns>
    <CardLayoutProperties>
         <Items>
        ...
        </Items>
    </CardLayoutProperties>
 </dx:ASPxCardView>
See Also