Grid.SetModified

Grid.SetModified ( 

string  ObjectName,

boolean Modified = true,

number  Row = -1,

number  Column = -1 )

Example 1

bModified = Grid.GetModified("Grid1", -1, -1);
if not bModified then
     -- Set the modified flag to true for the entire grid
     Grid.SetModified("Grid1", true, -1, -1);
end

Set the modified flag for the entire grid

See also:  Related Actions