Jump to content
Welcome to our new Citrix community!
  • 0

Problem with display of long names


Question

 

 

Hello everyone,

 

We're having a problem with the display of applications that have long names on the StoreFront page. The behavior seems to affect all versions of StoreFront.

In short a long name appears troncated.

We have tried making changes to the CSS to no avail.

 

 

The issue seems to been raised several times on Citrix' forum, but has never gotten any answers:

http://discussions.citrix.com/topic/352632-storefront-long-application-names/

http://discussions.citrix.com/topic/377832-long-delivery-group-display-name-and/

http://discussions.citrix.com/topic/354687-how-many-character-limit-about-default-published-application-name/

http://discussions.citrix.com/topic/357790-application-name-length/

 

Can anyone help?

Thank you,

Antoine

Link to comment

7 answers to this question

Recommended Posts

  • 1

You can overwrite the function by adding this to custom/script.js

 

(function(c) {
    var e = 0;
    window.CTXS = c.extend(window.CTXS || {}, {
        truncateToFit: function(a, b, d, e, l) {
            return b
        }
    })
})(jQuery);

 

So you can keep all your customizations at one place.

  • Like 1
Link to comment
  • 0
On 7/21/2017 at 6:58 AM, Tomas Karnold said:

a quick and dirty workaround:  inetpub\wwwroot\Citrix\Storeweb\receiver\js\ctxs.webui.min_something.js

 

find the "truncateToFit:" function and comment it's content after the first line and before the last line (return) - then no truncation at all 

Lost your image somehow, but wanted to ask if you've seen this done on 1912 versions of Storefront? I can't seem to force the long name.

Link to comment
  • 0
On 2/26/2018 at 12:35 PM, Kai Brandt said:

You can overwrite the function by adding this to custom/script.js

 

(function(c) {
    var e = 0;
    window.CTXS = c.extend(window.CTXS || {}, {
        truncateToFit: function(a, b, d, e, l) {
            return b
        }
    })
})(jQuery);

 

So you can keep all your customizations at one place.


This worked for Storefront 19.12 LTSR CU5. Thanks! 

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...