back to top

How do I force a datagrid refresh in SalesLogix??

Question:

I have created a customization so we can record changes to the adjusted price and quantity of a product in the Opportunity:Products datagrid.

I have locked the datagrid down so to make changes the user must right click and choose edit. This then opens a form i have made where they can edit the product’s adjusted price and quantity.

Once the user has made their chnages they click the ok button which saves the changes and creates the history record.

The problem i have is that once the user cicks ok and my SalesLogix form closes the changes do not reflect in the datgrid until either a ctrl+F5 is done or the user navigates to a different record and then returns to the one they edited (a normal F5 does not work).

Does anyone now how i can get the datagrid to autmatically show the updated values when my edit form closes?

Answer:

Try this code:

This is the code that should be executed on the closing of my edit form:

Dim frm
Dim i
‘ loop through the forms
For i = 0 to Application.Forms.Count – 1
‘ check if we’ve found the Account Detail form.
‘ make sure you’ve changed it’s Name property.
If Application.Forms(i).Name = “frmOppProducts” Then
‘ save the reference to this form
Set frm = Application.Forms(i)
‘ now use it to update one of it’s controls
‘Set frm.grdProducts.Recordset = DoGridCalculations (frm.grdProducts, “”, “”, frm.CurrentID)
‘frm.grdProducts.PostChanges
Dim a
a = frm.txtDataBound.Text
frm.txtDataBound.Text = frm.txtDataBound.Text & “a”
frm.txtDataBound.Text = a
frm.grdProducts.Refresh
Application.BasicFunctions.RefreshMainView

Dim objActiveView,objMiddleView,objTabView
Set objActiveView = Application.MainViews.ActiveView
Set objMiddleView = objActiveView.MiddleView
If Not (objMiddleView Is Nothing) Then
If objMiddleView.Name = “frmOppProducts” Then

Set objTabView = objActiveView.TabsView
Set objMiddleView.grdProducts.RecordSet = DoGridCalculations (frm.grdProducts, “”, “”, frm.CurrentID)
‘need an if here to check that the products tab is open
if objTabView.name = “frmOppProducts” then
Set objTabView.grdProducts.RecordSet = DoGridCalculations (frm.grdProducts, “”, “”, frm.CurrentID)
else
end if
objMiddleView.refresh
else

end if
end if
Exit For
End If
Next

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