Skip to main content
All docs
V25.1
  • ASPxClientGridView.GetEditFormLayout Method

    Returns the edit form layout.

    Declaration

    GetEditFormLayout(): ASPxClientFormLayout

    Returns

    Type Description
    ASPxClientFormLayout

    The form layout.

    Remarks

    Use the GetEditFormLayout method to access a form layout and then its specific item.

    function onValidation(s, e) { var formLayout = clientGrid.GetEditFormLayout(); var layoutItem = formLayout.GetItemByName(“someItemName”); // … }

    See Also