Hi James,
Greetings from Syncfusion support.
Based on your query, we could understand that you need to display all the selected items of Dropdown Tree, even the selected items text content exceeded the input width limit. To achieve your requirement, we suggest you to set the wrapText property of Dropdown Tree component as true(by default wrapText property is set to false) as demonstrated in the below code snippet,
|
App.component.html
<ejs-dropdowntree id="multiselect" [fields]='field' [mode]='box' [wrapText]="wrap"
[allowMultiSelection]='allowMultiSelection' popupHeight='220px' placeholder='Select items'>
</ejs-dropdowntree>
--------------------------------------------------------------
App.component.ts
export class AppComponent {
public box="Box";
public wrap=true;
} |
Please find the below sample for your reference,
Please let us know if you need further assistance.
Regards,
Shalini M.