Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
215
Wrapping text in igxColumn
posted

Hi,

I am using an igxGrid and I would like to make a cell wrapping text content.

The text has no space in it.

Here is my column declaration

  <igx-column header="Url" field="url" width="150px" [filterable]="true" [resizable]="true" >
    <ng-template igxCell let-cell="cell" >
      <span>{{ cell.value }}</span>
    </ng-template>
  </igx-column>

How can i Do

Thanks