Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Editable DataGrid in AngularJS

Is there any AngularJS module as for DataGrid which provides In-Line Editing? There is one in KendoUI http://demos.kendoui.com/web/grid/editing-inline.html

Can AngularJS & KendoUI be used together?

like image 848
Anand Avatar asked Aug 18 '12 06:08

Anand


2 Answers

check out ui-grid

templating, virtualization, simple data binding for selections, grouping, etc...

like image 157
timothyswt Avatar answered Oct 12 '22 02:10

timothyswt


look at this quite generic example, where i loop first through rows and then through columns. then a simple change between a span and an input field. http://jsfiddle.net/3BVMm/3/

this would enable you to make inline editing with a few lines of code.

BUT: it doesnt work as expected, as there seems to be an bug, which I posted already on angular.

like image 43
Luke Avatar answered Oct 12 '22 00:10

Luke