Skip to main content

ASPxClientGridView.GetEditFormLayout Method

Returns the edit form layout.

#Declaration

TypeScript
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