Hi!
I need to define a multiline column in case the width does not reach to show all the text. If the text is wider than the column it shows me "..." at the endIn the same way that the js grid of infragistics doesis this possible?
Thanks
Pablo
Hello Pablo,
Thank you for posting in our community.
You can use the Angular's pseudo-classes - :host and ::ng-deep, in your component to achieve your requirement.
:host { ::ng-deep { .igx-grid__td-text { white-space: normal; } } }
The white-space property specifies how white-space inside an element is handled.
this works excellent, thank you very much, Martin
I am glad that you find my suggestion helpful.
Thank you for using Infragistics components.