Open Closed

Customize Abp-Table #127


User avatar
0
edelivery created

Hi all! I want to add select checkbox to abp-table but i dont't know how to made it. Currently, I'm using primeng table Thanks

Markdown supported.
Copy, paste, or drag & drop images and files (max 100 MB per file, 100 MB total per post)

5 Answer(s)
  • User Avatar
    0
    alper created
    Support Team Director

    MVC or Angular?

    Markdown supported.
    Copy, paste, or drag & drop images and files (max 100 MB per file, 100 MB total per post)
  • User Avatar
    0
    edelivery created

    i'm using Angular

    Markdown supported.
    Copy, paste, or drag & drop images and files (max 100 MB per file, 100 MB total per post)
  • User Avatar
    0
    Mehmet created

    There is no fast way to add checkboxes to abp-table. You can add checkboxes manually.

     <ng-template #tableHeader>
        <tr>
           <th><input type="checkbox" /></th> <!-- You can add checkbox with your own logic to head-->
        </tr>
    </ng-template>
    <ng-template #tableBody let-data let-index="rowIndex">
        <tr>
          <td><input type="checkbox" /></td> <!-- You can add checkbox with your own logic to row-->
        </tr>
    </ng-template>
    

    If yo're using the primeng, you should see the table selection documentation.

    Markdown supported.
    Copy, paste, or drag & drop images and files (max 100 MB per file, 100 MB total per post)
  • User Avatar
    0
    edelivery created

    Thank you so much

    Markdown supported.
    Copy, paste, or drag & drop images and files (max 100 MB per file, 100 MB total per post)
  • User Avatar
    0
    PriyankaK created

    I am using MVC . Can you give solution please?

    Markdown supported.
    Copy, paste, or drag & drop images and files (max 100 MB per file, 100 MB total per post)
Boost Your Development
ABP Live Training
Packages
See Trainings
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.8.0-preview. Updated on September 16, 2026, 14:50
1
ABP Assistant
🔐 You need to be logged in to use the chatbot. Please log in first.