back to top

Disabling an Editable Field in a Datagrid in SalesLogix v7

Question: I’m trying to disable an editable date field in a datagrid in SalesLogix v7 using this code:

from the CustomDrawCell event – the field name and
display name are ‘Online_Date’ and grid is named dgProduction:
dgProduction.Columns.Item(“

Online_Date”).DisableEditor=True

I get the error:
Object Required: ‘dgProduction.Columns.Item(…)’

I’ve used this code before without issue.  Any thoughts why this is happening?

 
Answer:  Issues with the name/caption and sorting (when you click a sort column you’ll get errors) can be avoided by using this code:

================
Colouring a grid
================

For
the Grid – select the property “OnCustomDrawCell” – this will create a
sub based on the name of the grid followed by CustomDrawCell e.g.
————–|————-|
Sub
dgServicesCustomDrawCell(

Sender, ByRef Node, ByRef Column, IsSelected,
IsFocused, ByRef Text, ByRef Color, ByRef Alignment, ByRef Font, ByRef
FontColor)

Dim sFieldName
Dim vStatus
Dim lColumnIndex

sFieldName = UCase ( Column.FieldName ) ‘ Field you want to look for

Select Case sFieldName
Case “A2_STATUS” ‘ ALIAS name of the column in QB

lColumnIndex = GetColumnIndexByFieldName ( dgServices,”A2_STATUS” ) ‘ Used so that grid can be sorted/grouped
vStatus = Node.Values ( lColumnIndex ) ‘ Gets the actual value

End Select

If Not IsNull ( vStatus ) Then ‘ Ensure you check for Nulls

Select Case vStatus
Case “Open”
FontColor = &H00000000 ‘ in v7.x – you can use enum of clBlack, clGreen etc

Case “Lost”
FontColor = &H000000FF
Case “Won”
FontColor = &H00800000
Font.Bold = True

End Select
End If

End Sub

‘==========================================================================================
Function GetColumnIndexByFieldName ( ByRef Grid, ByVal FieldName )

Dim i
Dim lColumnIndex

lColumnIndex = -1
For i = 0 To Grid.Columns.Count – 1
If UCase ( Grid.Columns(i).FieldName ) = UCase ( FieldName ) Then
lColumnIndex = i
Exit For

End If
Next
GetColumnIndexByFieldName = lColumnIndex
End Function

Put in your options during the Case item.

 
 

Contact Customer FX for your CRM project
We let our expertise speak for itself - let us know how our all-star team can help on your CRM project
About the Author

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Infor CRM Sync for Exchange: Action Required by August 31, 2026

Using Infor CRM Sync for Exchange with Microsoft 365? Your Exchange administrator must update tenant settings by August 31, 2026 to prevent sync disruption.

[Webinar] What’s Coming Next for Infor CRM SLX and Why v10 Matters

See what’s coming next for Infor CRM SLX, including new marketing workflows, automation improvements, and reasons to consider upgrading to v10.

Disable Caching in Infor CRM SLX Web Client

In the rare case caching is causing issues in the Infor CRM SLX web client, it is possible to disable specific types of caching by making edits using Application Architect, and then deploying.

Exploring AI Options for Infor CRM v10

I've started taking a closer look at the AI capabilities built into Infor CRM v10. Over the next several posts, I'll share what I learn. From the built-in features and supported AI providers to implementation considerations, costs, and practical use cases.

Infor CRM SLX 10.0: Delegate Ownership Changes for “Everyone” Records

Learn how the new EveryoneOwnerAssignment secured action in Infor CRM SLX 10.0 allows designated users to change ownership of Everyone-owned records without requiring Administrator access.

Related Articles

Infor CRM Sync for Exchange: Action Required by August 31, 2026

Using Infor CRM Sync for Exchange with Microsoft 365? Your Exchange administrator must update tenant settings by August 31, 2026 to prevent sync disruption.

[Webinar] What’s Coming Next for Infor CRM SLX and Why v10 Matters

See what’s coming next for Infor CRM SLX, including new marketing workflows, automation improvements, and reasons to consider upgrading to v10.

Disable Caching in Infor CRM SLX Web Client

In the rare case caching is causing issues in the Infor CRM SLX web client, it is possible to disable specific types of caching by making edits using Application Architect, and then deploying.

Exploring AI Options for Infor CRM v10

I've started taking a closer look at the AI capabilities built into Infor CRM v10. Over the next several posts, I'll share what I learn. From the built-in features and supported AI providers to implementation considerations, costs, and practical use cases.

Related Videos