Open Closed

Need Multi-Row Selection within a Column in abp-extensible-table #9040


User avatar
0
davidsi02 created

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)
  • User Avatar
    0
    erdem.caygor created
    Support Team

    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 custom component 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-extensions

    Best regards

  • User Avatar
    0
    davidsi02 created

    Can you give an example for CustomMultiSelectComponent?

Boost Your Development
ABP Live Training
Packages
See Trainings
Mastering ABP Framework Book
Do you need assistance from an ABP expert?
Schedule a Meeting
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v9.2.0-preview. Updated on March 25, 2025, 11:10