Auto resize columns

Has anyone else notice a new “Auto resize columns” option in grid overflow menus? We just noticed this in our pilot environment a few days ago, but we don’t see it in our production environment.

We are on 2024.2.12 in both environments, so could it be related to some permissions or security setting? We are trying to figure out how to enable this in our production environment.

1 Like

I see it in both Live and Third and I love it.

That’s great! We will definitely have to keep looking into why only a select few users have access to it.

I just noticed that a couple of days also, it would be nice if it had a max size because my grid had some very long text fields and those columns just totally blew up

Oh wow I hadn’t noticed that option before but its been much needed for some of the dashboards we’ve converted from classic. Saves me from having to go into application studio and add a new layer.

I did see in the “Preview Features” there was a new option for Auto-size grid columns. I tried turning it off an on but didn’t see a difference so I put it on the list of things to look into.

It doesn’t appear to hide/add the option you mentioned in the overflow menu but I wonder if its still related in a way.

image

We have the option available even with it turned off in preview :woman_shrugging:

Same, I wonder what it actually does then. I didn’t see anything in EpicWeb or EpicCare for this specific preview feature. Do you know where they announce the details for them?

1 Like

This idea is “In Development.”

Add a button at top of data grids to auto-fit | Epicor Ideas Portal

1 Like

Just confirmed with two other users, they do not see the “Auto resize columns” option in the overflow menu but I do. Must be permission related somewhere. Also, they do not have the preview features section.

We reached out to Epicor regarding this and learned that Security Managers can enable the features by selecting “For this company” in the “Preview Features” section. Once this is enabled for the company all non-security users should be able view the “Preview Features” section and enable the feature themselves.

2 Likes

In the area where you can turn on preview features, do you have the ability to change the dropdown from “For me” to “For this company”?

Oh cool, I do see the option to turn on preview features for the company. Thanks!

I literally found it yesterday because of this feature.

1 Like

is there a way to auto enable this for all grids and users? or is it only a manual selection?

Preview Features can be enabled per-user or per-company if access is set in user account security to allow you to change it.

I don’t remember if enabling it per company enables it for all users or just makes it visible to all the users.

If it doesn’t enable it, you could run a script to iterate a rest call against each user name and enable the feature. It looks like 1 call can be made to enable it tenant wide for all companies, and also scope to Security Group, i’ve not tried either option. Call “DisableFeature” to do the inverse.

Each feature has a GUID:

a REST call to Ice.LIB.FeatureFlagsSvc/EnableFeature with params:
“featureID” set to the appropriate GUID above.
“level” = 1 (TenantID) 2 = (Company) 3 = (SecGroupCode) 4 = (UserID)
“target” = The appropriate object matching the level (TenantID, Company, SecGroupCode, or UserID)

2 Likes

This post details how to create a bpm that enables a preview feature for all users. I don’t know of a way to actually make all grids use the auto-resize columns feature. I assume there is a property that could be set in application studio, but that would still be a grid by grid basis.

https://www.epiusers.help/t/set-theme-bpm/129678

1 Like