On 12/9/2021 9:55 AM, Milind Nighojkar wrote: > Hi Ken, > > I wrote code as below for a grid. Not able to see the change in speedtip based on the field value > > **************** > function rowset_onNavigate(type, nRows) > if this.fields["emp_active"].value = false > this.CanEdit := false > else > this.fields["name"].speedtip = 'Changed Speedtip' > endif > return true > ****************
The speedTip is not a property of the field, it is a property of
individual visual controls.
For the grid, you would have to get pretty specific:
oForm = this.parent.parent // this = rowset
// parent = query
// parent = form
oForm.grid.columns["Column01"].editorControl.speedTip := "Changed
SpeedTip"