back to top

Infor CRM Web- Making Labels Wider on Quick Forms

In the Infor CRM web client, quick forms render controls inside of a div. The div is where a lot of the visual attributes are, like how a control’s label spans 40% of the overall width. There is no direct way to manipulate this server side since the divs do not contain IDs. Even doing it client side can’t be done directly without an ID. There is a way to handle this though by using jquery and getting the control’s parent, which is the div it site in. From there you can then manipulate the div to change its style.

Doing it this way is for one off cases. If you want to handle this on a more global method a custom css would be the way to go.

Here is code that you can add to a quick form’s load action to inject client side code into the form that manipulates a server control’s parent div. In this case the control I am using is a label called QFLabel3:

        string script = "var lbl = $( '#" + QFLabel3.ClientID + "' );";
        script += "lbl.parent().css('width', '80%' );";
        script += "lbl.parent().css('text-align', 'left');";
        script += "lbl.parent().css('margin-left','14px');";
        ScriptManager.RegisterStartupScript(Page, GetType(), "myScript", script, true);
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
Kris Halsrud
Kris Halsrud
Kris Halsrud is a Senior Analyst / Developer for Customer FX Corporation.

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