show / hide menu

GridRowDetailsSetValues

This function is used to set value to a grid row.

Syntax:

GridRowDetailsSetValues(GridControName,RowIndex, DetailView Control Name,Value)

GridControlName is the name of the grid. The user will have to specify the row index and “DetailView Control Name”. The “DetailView Control Name” should be control name with the property.

Example:

GridRowDetailsSetValues(dynamicgrid1,1, TextBox1.value,25)

The function will set 25 as the TextBox1 value.