Is there a pre-built Angular component similar to JTable?

ぐ巨炮叔叔 提交于 2019-12-06 12:57:56

Have you checked out ng-grid? I think it has some of what you want.

http://angular-ui.github.io/ng-grid/

Check out ng-admin. It supports all CRUD operations, and was built with customization in mind.

https://github.com/marmelab/ng-admin

Ah for what it is worth, I ended up using Kendo UI's DataGrid, which does in fact do all the things I was asking about, and as of the most recent version, has a vendor-supported Angular integration library. Thanks for the other answers though!

Here is the angular version of jtable called angular-jtable.

GitHub https://github.com/pmapkiranch/angular-jtable

Plunker http://plnkr.co/edit/D7oics3tl2i3elowaALu?p=preview

<body>
    <div ng-app="myApp">
    <div ng-controller="jtableTestController" class="container">
     <pre>You selected {{vm.selectedrows.length}} items</pre> 
      
      <jtable items="items" options="JtableOptions" vm="vm" selecteditems="vm.selectedrows"></jtable>
    </div>
  
</div>
  </body>

Result

jtable is very handy but we miss angular version in original one so I've started new one. More features to come.

If you are using Angular 5, consider

https://www.npmjs.com/package/angular5-data-table

If you are using AngularJS, checkout

http://ui-grid.info/

This project is part of AngularUI

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!