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

ASPxClientGridView.SetEditValue(column, value) Method

Sets the value of the specified edit cell.

Declaration

SetEditValue(
    column: ASPxClientGridViewColumn | number | string,
    value: string
): void

Parameters

Name Type Description
column ASPxClientGridViewColumn | number | string
value string

A string value that specifies the edit cell’s new value.

Remarks

Note

The grid does not render default editors when the EditForm template (MVCxGridViewProperties.SetEditFormTemplateContent) is used. The GetEditor(column) returns null when you access custom editors in the template. In this case, use the Name or the ClientInstanceName of an extension that is placed in the EditForm template to access custom editors on the client side.

See Also