Skip to main content

ASPxClientUtils.GetEditorValuesInContainer(containerOrId) Method

Returns values of editors located in the specified container.

#Declaration

TypeScript
static GetEditorValuesInContainer(
    containerOrId: any,
    processInvisibleEditors?: boolean
): any

#Parameters

Name Type Description
containerOrId any

A container of editors, or its ID.

processInvisibleEditors boolean

true to process both visible and invisible editors that belong to the specified container; false to process only visible editors.

#Returns

Type Description
any

An object containing pairs of editor names and values.

#Remarks

The GetEditorValuesInContainer method allows you to send values of DevExpress editors to the server side using an Ajax request.

ASPxClientUtils.GetEditorValuesInContainer(formId),
     ...
See Also