Property UpdatedGUI: Boolean (R/W)
Description
Updates the GUI after intitializing the grid. Set this property to true in the InitializeGridsFields procedure.
Code Snippet
Dim frmEditForm
Set frmEditForm = IsahObjects.Get("EditFormObject")
frmEditForm.InitializeGridFields = "InitializeGridFields"
Sub InitializeGridFields(Sender)
'Change display labels and set fields to read only
'Change the display format
'Set the width of several columns
' Hide columns
frmEditForm.UpdateGUI = True
End Sub