I'm working with the abp-extensible-table
component and have a requirement to allow users to select multiple lines from it within a specific column. Currently, it seems like it doesn't support it.
Could you please provide guidance or suggest a way to implement a multi-select within a column of the abp-extensible-table? Any examples or best practices for achieving this would be greatly appreciated.
2 Answer(s)
-
0
Hello,
You're right the
abp-extensible-table
doesn't directly support multi-select out of the box for a column. However, you can achieve this by passing a customcomponent
to the component property in your entity props. Here's a basic example:{ type: ePropType.String, name: 'select', displayName: '::Select', columnWidth: 250, component: CustomMultiSelectComponent, }
If you'd like, feel free to share your current column setup or sample code so we can help you further.
Also, you can refer to the official documentation on table column extensions here:
https://abp.io/docs/latest/framework/ui/angular/data-table-column-extensionsBest regards
-
0
Can you give an example for
CustomMultiSelectComponent
?