mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* [ACS-9012] Add the option to truncate disaplay value in text column * [ACS-9012] Use slice as substr is deprecated * [ACS-9012] Remove redundant param
28 lines
831 B
Markdown
28 lines
831 B
Markdown
---
|
|
Title: Truncate pipe
|
|
Added: v7.0.0-alpha.7
|
|
Status: Active
|
|
Last reviewed: 2024-11-28
|
|
---
|
|
|
|
# Truncate Pipe
|
|
|
|
Truncates the text when it exceeds specified max length. It also appends provided ellipsis at the end of the string.
|
|
|
|
## Basic Usage
|
|
|
|
<!-- {% raw %} -->
|
|
|
|
```HTML
|
|
<div>
|
|
{{ textToTruncate | truncate:100:'***' }}
|
|
</div>
|
|
```
|
|
|
|
<!-- {% endraw %} -->
|
|
|
|
| Name | Type | Default value | Description |
|
|
| ------------- | -------- | ------------- | ---------------------------------------------------------------------- |
|
|
| maxTextLength | `number` | 250 | Max length of the text that should be displayed prio to truncating. |
|
|
| ellipsis | `string` | `...` | String which will be appended to the text when truncating will happen. |
|