Skip to main content

ASPxClientCardView.GetEditFormLayoutItemByColumn(column) Method

Gets the edit form layout item.

#Declaration

TypeScript
GetEditFormLayoutItemByColumn(
    column: ASPxClientCardViewColumn | number | string
): ASPxClientLayoutItem

#Parameters

Name Type Description
column string | number | ASPxClientCardViewColumn

The column, its index or name.

#Returns

Type Description
ASPxClientLayoutItem

The form layout item.

#Remarks

The following example illustrates how to find the layout item whose column’s name is “fireDate” and then switch its visibility on a click.

function onShowHideInfoClick(s, e) {
    var fireDateItem = clientCardView.GetEditFormLayoutItemByColumn("fireDate");
    fireDateItem.SetVisible(false);
}
See Also