back to top

Using QuickForms in Web Browser Controls in a Dialog in the Infor CRM (Saleslogix) Web Client

Kris wrote previously about a change you can make to allow using QuickForms in Web Browser controls. That change is a necessary one to make, however, there is one more change you must make if you’ll be using QuickForms in the Web Browser control that you will be showing as a dialog. When the form is shown in the dialog workspace, there is a problem that prevents the QuickForm in the Web Browser control from getting it’s data context, so the controls are essentially unbound. You won’t see any data in the controls and any data you enter won’t be saved. This can be fixed in a similar way to what Kris outlined in the article I linked to above. What Kris outlined in that article must be done as well as the steps I’ll outline below.

First, make sure you’ve done the steps in Kris’ article Allowing quickforms to be used within the Web Browser control in the web client

Once you’ve done those steps, you must do a similar change for the QFBrowserControl.WebControlRenderingTemplate.vm. To do this, perform the following steps:

In the Application Architect, in the Virtual File System Explorer (Control + Alt + F), expand out Model…Quickforms…Web

 

Locate the file QFBrowserControl.WebControlRenderingTemplate.vm. Double click this file.

 

Look for the following line (in 8.3 this is line number 13):

sp.DialogService = DialogService;

 

Change that to be (all on one line):

if (DialogService != null) sp.DialogService = DialogService;

 

Now, look for the following line (in 8.3 this is line number 17):

esp.InitEntityBoundSmartPart(PageWorkItem.Services.Get(<Sage.Platform.Application.IEntityContextService>));

 

Change that to be (all on one line):

esp.InitEntityBoundSmartPart(this.EntityContext ?? PageWorkItem.Services.Get<Sage.Platform.Application.IEntityContextService>());

 

Then save the changes to the file.

Now when you build and deploy you will be able to place quickforms within the web browser control and it should work fine whether or not it is in a dialog.

Important:

You must close and reopen Application Architect after making this change. Then, do a full rebuild by going to the “Build” menu and select “Rebuild Web Platform” (or hold the Control/CTRL key while clicking the Build Web Platform button on the toolbar).

Also, if you’re using an exported VFS on the file system, you need to change this in the exported model. Navigate to the directory where your model exists and locate the files to change there. The Virtual File System Explorer area in Application Architect is only looking at the files in the database, not in the exported model. If you’re using the VFS in the database, the files in the Virtual File System Explorer are the correct ones to change, but not for an exported VFS in the file system.

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
Ryan Farley
Ryan Farleyhttps://customerfx.com/article/author/ryanfarley/
Ryan Farley is the Director of Development for Customer FX and creator of slxdeveloper.com. He's been blogging regularly about SalesLogix, now Infor CRM, since 2001 and believes in sharing with the community. His new passion for CRM is Creatio, formerly bpm'online. He loves C#, Javascript, web development, open source, and Linux. He also loves his hobby as an amateur filmmaker.

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