I'm using a ng2-smart-table component, but i cant find an option, which set a cell is editable, like this example (http://akveo.com/blur-admin/#/tables/smart table marek as "EDITABLE CELLS") Please, help me - can I edit each cell separately in ng2-smart-table Thanks!
Asked
Active
Viewed 4,275 times
0
-
are you able to create a EDITABLE CELLS using ng2-smart-table. – shamim khan Mar 06 '19 at 04:53
2 Answers
0
You can set by setting editable:True
actions: actions,
Yourcolumns: {
YourColumnName: {
title: 'Name',
filter:true,
editable:True,
type:'html'
}}

Hardik
- 106
- 9
0
You can do it by using below code.
actions: { add: true, edit: true, delete: false, position: 'right' },
columns: {
columnname: {
title: 'Column Name',
type: 'string',
editable: true
}
}

Deepak Kumar
- 1,246
- 14
- 38